OSDN Git Service

* fhandler_serial.cc (tcsendbreak): "sleeptime" argument to usleep()
authordj <dj>
Tue, 8 Aug 2000 20:46:47 +0000 (20:46 +0000)
committerdj <dj>
Tue, 8 Aug 2000 20:46:47 +0000 (20:46 +0000)
must be in units of microseconds, not milliseconds.

winsup/cygwin/ChangeLog
winsup/cygwin/fhandler_serial.cc

index a8381ce..b9c8ca3 100644 (file)
@@ -1,3 +1,8 @@
+Tue Aug  8 13:20:00 2000  Bob Wilson  <bwilson@tensilica.com>
+
+       * fhandler_serial.cc (tcsendbreak): "sleeptime" argument to usleep()
+       must be in units of microseconds, not milliseconds.
+
 Mon Aug  7 00:11:35 2000  Christopher Faylor <cgf@cygnus.com>
 
        * include/cygwin/cygwin_dll.h: Remove extraneous (and incorrect)
index 96d7793..6ceb71e 100644 (file)
@@ -285,7 +285,7 @@ fhandler_serial::close ()
 int
 fhandler_serial::tcsendbreak (int duration)
 {
-  unsigned int sleeptime = 300;
+  unsigned int sleeptime = 300000;
 
   if (duration > 0)
     sleeptime *= duration;