diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-03-08 11:49:43 +0100 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2012-03-08 11:49:43 +0100 |
commit | 82d86f28445f3231f7f9e94ac6678065ab476a8e (patch) | |
tree | b2833b3156fb0d99075f8f19e484c98026b341f9 /sysdeps/pthread | |
parent | 2edd9a79e5967e01f9afc3ae1207159a2c53c73f (diff) | |
download | glibc-82d86f28445f3231f7f9e94ac6678065ab476a8e.tar.gz |
Fix struct timespec normalization (as used in many other places).
Diffstat (limited to 'sysdeps/pthread')
-rw-r--r-- | sysdeps/pthread/aio_misc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sysdeps/pthread/aio_misc.c b/sysdeps/pthread/aio_misc.c index 601feb8980..d5bb95bd49 100644 --- a/sysdeps/pthread/aio_misc.c +++ b/sysdeps/pthread/aio_misc.c @@ -1,6 +1,5 @@ /* Handle general operations. - Copyright (C) 1997-2001, 2003, 2004, 2006, 2007, 2009, 2011 - Free Software Foundation, Inc. + Copyright (C) 1997-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -635,7 +634,7 @@ handle_fildes_io (void *arg) gettimeofday (&now, NULL); wakeup_time.tv_sec = now.tv_sec + optim.aio_idle_time; wakeup_time.tv_nsec = now.tv_usec * 1000; - if (wakeup_time.tv_nsec > 1000000000) + if (wakeup_time.tv_nsec >= 1000000000) { wakeup_time.tv_nsec -= 1000000000; ++wakeup_time.tv_sec; |