diff options
Diffstat (limited to 'linuxthreads/Examples/ex10.c')
-rw-r--r-- | linuxthreads/Examples/ex10.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linuxthreads/Examples/ex10.c b/linuxthreads/Examples/ex10.c index 8af1b6e1ca..9352f463a0 100644 --- a/linuxthreads/Examples/ex10.c +++ b/linuxthreads/Examples/ex10.c @@ -1,5 +1,5 @@ /* Tests for pthread_mutex_timedlock function. - Copyright (C) 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. Contributed by Kaz Kylheku <kaz@ashi.footprints.net>, 2000. The GNU C Library is free software; you can redistribute it and/or @@ -67,7 +67,7 @@ thread (void *arg) ts.tv_nsec += TIMEOUT_NS; - if (ts.tv_nsec > 1000000000L) { + if (ts.tv_nsec >= 1000000000L) { ts.tv_sec++; ts.tv_nsec -= 1000000000L; } |