diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-04-09 08:03:15 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-04-09 08:03:15 +0000 |
commit | 6311efee520cedd76f77c44e0eef5b39852e0c62 (patch) | |
tree | 967f12c9aa86b97f82c3d00e2b045efc5ee1ca89 /linuxthreads | |
parent | 14b2ede5b27384fb037282b98cacbc516c9cd34c (diff) | |
download | glibc-6311efee520cedd76f77c44e0eef5b39852e0c62.tar.gz glibc-6311efee520cedd76f77c44e0eef5b39852e0c62.tar.xz glibc-6311efee520cedd76f77c44e0eef5b39852e0c62.zip |
Update.
2002-04-09 Ulrich Drepper <drepper@redhat.com> * extra-lib.mk: Mark assignment to lib with override.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/sysdeps/pthread/timer_routines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/pthread/timer_routines.c b/linuxthreads/sysdeps/pthread/timer_routines.c index 6eae476cf5..ef66ac32aa 100644 --- a/linuxthreads/sysdeps/pthread/timer_routines.c +++ b/linuxthreads/sysdeps/pthread/timer_routines.c @@ -416,7 +416,7 @@ thread_func (void *arg) timer->overrun_count = 0; timespec_add (&timer->expirytime, &timer->expirytime, &timer->value.it_interval); - while (timespec_compare(&timer->expirytime, &now) < 0) + while (timespec_compare (&timer->expirytime, &now) < 0) { timespec_add (&timer->expirytime, &timer->expirytime, &timer->value.it_interval); |