]> sourceware.org Git - newlib-cygwin.git/commitdiff
* signal.cc (usleep): Use useconds_t for the type as per POSIX.
authorChristopher Faylor <me@cgf.cx>
Tue, 12 Jun 2007 20:49:48 +0000 (20:49 +0000)
committerChristopher Faylor <me@cgf.cx>
Tue, 12 Jun 2007 20:49:48 +0000 (20:49 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/signal.cc

index 0100d8b83033a193a395209087c7c6b219c3b940..7dcc1da36d107da83b0388db009becf828a94a80 100644 (file)
@@ -1,3 +1,7 @@
+2007-06-12  Christopher Faylor  <me+cygwin@cgf.cx>
+
+       * signal.cc (usleep): Use useconds_t for the type as per POSIX.
+
 2007-06-12  Corinna Vinschen  <corinna@vinschen.de>
 
        * Makefile.in (DLL_OFILES): Add xsique.o.
index 575c46c53700da1a586824ae0b235b6dff6203a4..3765cff2610b05cb15e69f900d6379b1d62d9524 100644 (file)
@@ -135,7 +135,7 @@ sleep (unsigned int seconds)
 }
 
 extern "C" unsigned int
-usleep (unsigned int useconds)
+usleep (useconds_t useconds)
 {
   struct timespec req;
   req.tv_sec = useconds / 1000000;
This page took 0.031117 seconds and 5 git commands to generate.