diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-07-26 02:18:41 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-07-26 02:18:41 +0000 |
commit | 9ec9e34ee301ccfa4216939639be5498831f9d37 (patch) | |
tree | e61a7957abfbeb4816cb6dc545c116b8e18159b5 /linuxthreads/sysdeps/pthread | |
parent | a956d04575bbd053a1ff61a05a5526867633d0d0 (diff) | |
download | glibc-9ec9e34ee301ccfa4216939639be5498831f9d37.tar.gz glibc-9ec9e34ee301ccfa4216939639be5498831f9d37.tar.xz glibc-9ec9e34ee301ccfa4216939639be5498831f9d37.zip |
Update.
* internals.h (strict __pthread_descr_struct): Add p_sem_avail. * semaphore.c: Handle spurious wakeups. * sysdeps/pthread/pthread.h: Add back PTHREAD_MUTX_FAST_NP as an alias for PTHREAD_MUTEX_ADAPTIVE_NP for source code compatibility. * pthread.c (__pthread_set_own_extricate): Use THREAD_GETMEM. (__pthread_wait_for_restart): Likewise. * condvar.c (pthread_cond_wait): Also check whether thread is cancelable before aborting loop. (pthread_cond_timedwait): Likewise.
Diffstat (limited to 'linuxthreads/sysdeps/pthread')
-rw-r--r-- | linuxthreads/sysdeps/pthread/pthread.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linuxthreads/sysdeps/pthread/pthread.h b/linuxthreads/sysdeps/pthread/pthread.h index dd27ae0678..b017007f80 100644 --- a/linuxthreads/sysdeps/pthread/pthread.h +++ b/linuxthreads/sysdeps/pthread/pthread.h @@ -88,6 +88,10 @@ enum PTHREAD_MUTEX_ERRORCHECK = PTHREAD_MUTEX_ERRORCHECK_NP, PTHREAD_MUTEX_DEFAULT = PTHREAD_MUTEX_NORMAL #endif +#ifdef __USE_GNU + /* For compatibility. */ + , PTHREAD_MUTEX_FAST_NP = PTHREAD_MUTEX_ADAPTIVE_NP +#endif }; enum |