diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-10-27 00:33:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-10-27 00:33:00 +0000 |
commit | 8dd1e494527b0df2b5c18446d329cc51a1fd8584 (patch) | |
tree | d0711f7d0dd27de242a2744ab110612f367f571e /linuxthreads/condvar.c | |
parent | 79b3c4ff7952f9196955eca341a2debd774d35f4 (diff) | |
download | glibc-8dd1e494527b0df2b5c18446d329cc51a1fd8584.tar.gz glibc-8dd1e494527b0df2b5c18446d329cc51a1fd8584.tar.xz glibc-8dd1e494527b0df2b5c18446d329cc51a1fd8584.zip |
Update.
1999-10-26 Ulrich Drepper <drepper@cygnus.com> * restart.h (suspend_with_cancellation): Rewrite as a macro. * condvar.c (pthread_cond_timedwait_relative): Don't mark as inline.
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 672ccb1294..2ea7513c68 100644 --- a/linuxthreads/condvar.c +++ b/linuxthreads/condvar.c @@ -61,7 +61,7 @@ int pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex) return 0; } -static inline int +static int pthread_cond_timedwait_relative(pthread_cond_t *cond, pthread_mutex_t *mutex, const struct timespec * reltime) |