diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-15 17:15:10 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-15 17:15:10 +0000 |
commit | ef187474bc32c56121db454e023197f2037e601d (patch) | |
tree | 37d50aa26f48b0eda1886665c4389831bc78a8b2 /linuxthreads/ChangeLog | |
parent | a5a6f9262eeffab9f78622258fae306d1bf99d04 (diff) | |
download | glibc-ef187474bc32c56121db454e023197f2037e601d.tar.gz glibc-ef187474bc32c56121db454e023197f2037e601d.tar.xz glibc-ef187474bc32c56121db454e023197f2037e601d.zip |
Update.
* sysdeps/alpha/dl-machine.h (RTLD_START):Rewrite for new init function interface. Patch by Richard Henderson <rth@cygnus.com>.
Diffstat (limited to 'linuxthreads/ChangeLog')
-rw-r--r-- | linuxthreads/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index 50fa766fc6..9732297adc 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,5 +1,21 @@ 2000-04-15 Ulrich Drepper <drepper@redhat.com> + * condvar.c: Remove all the special code to handle cond_timedwait. + Use timedsuspend instead. + * internals.h: Declare __pthread_timedsuspend_old, + __pthread_timedsuspend_new, and __pthread_timedsuspend. + Remove declaration of __pthread_init_condvar. + * pthread.c: Define __pthread_timedsuspend variable. + (__pthread_timedsuspend_old): New function. Timed suspension + implementation for old Linux kernels. + (__pthread_timedsuspend_new): New function. Timed suspension + implementation for new Linux kernels. + * restart.h (timedsuspend): New function. Call appropriate + suspension function through __pthread_timedsuspend. + * semaphore.c (sem_timedwait): Use timedsuspend, don't duplicate + the code. + Patch by Kaz Kylheku <kaz@ashi.footprints.net>. + * internals.h (WRITE_MEMORY_BARRIER): Define as MEMORY_BARRIER if undefined. * spinlock.c: Use WRITE_MEMORY_BARRIER instead of MEMORY_BARRIER |