diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-29 18:41:02 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-29 18:41:02 +0000 |
commit | ddbf7fef451eeb417ea28ca114f8f12c58dd5ca8 (patch) | |
tree | 4dbe0d974d84993dd580f97744121ae965ca4e2e /linuxthreads/condvar.c | |
parent | ef5742267ce858e059ee27033014c24f009bb326 (diff) | |
download | glibc-ddbf7fef451eeb417ea28ca114f8f12c58dd5ca8.tar.gz glibc-ddbf7fef451eeb417ea28ca114f8f12c58dd5ca8.tar.xz glibc-ddbf7fef451eeb417ea28ca114f8f12c58dd5ca8.zip |
Update.
1998-07-29 Mark Kettenis <kettenis@phys.uva.nl> * sysdeps/mach/hurd/dl-sysdep.c (__lseek): New function. (__getpid): New function. (abort): New function. * nis/nis_cache2_xdr.c: Removed.
Diffstat (limited to 'linuxthreads/condvar.c')
-rw-r--r-- | linuxthreads/condvar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/condvar.c b/linuxthreads/condvar.c index 91067d2d17..480a8e426e 100644 --- a/linuxthreads/condvar.c +++ b/linuxthreads/condvar.c @@ -86,7 +86,7 @@ pthread_cond_timedwait_relative(pthread_cond_t *cond, } else { /* Unblock the restart signal */ sigemptyset(&unblock); - sigaddset(&unblock, PTHREAD_SIG_RESTART); + sigaddset(&unblock, __pthread_sig_restart); sigprocmask(SIG_UNBLOCK, &unblock, &initial_mask); /* Sleep for the required duration */ retsleep = __libc_nanosleep(reltime, NULL); |