diff options
author | Richard Braun <rbraun@sceen.net> | 2012-09-03 20:29:10 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-11-25 00:29:44 +0100 |
commit | 2531b513b4c3338a69230f273a57f6a7f927b3c8 (patch) | |
tree | 33944d20c52d369ab725af8ffc097f95bd642bea /Versions | |
parent | ee750a7cefcb13a88d87a124bb36f8f8a344ecd9 (diff) |
Add Hurd-specific condition wait function
* Makefile (libpthread-routines): Add pt-hurd-cond-wait.
* Versions (libc): Add pthread_hurd_cond_wait_np.
(libpthread): Likewise.
* sysdeps/mach/hurd/bits/pthread-np.h: New file.
* sysdeps/mach/hurd/pt-hurd-cond-wait.c: Likewise.
Diffstat (limited to 'Versions')
-rw-r--r-- | Versions | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,7 @@ libc { pthread_cond_broadcast; pthread_cond_destroy; pthread_cond_init; pthread_cond_signal; pthread_cond_wait; pthread_cond_timedwait; + pthread_hurd_cond_wait_np; pthread_equal; pthread_exit; pthread_getschedparam; pthread_setschedparam; pthread_mutex_destroy; pthread_mutex_init; @@ -72,6 +73,8 @@ libpthread { pthread_cond_broadcast; pthread_cond_destroy; pthread_cond_init; pthread_cond_signal; pthread_cond_timedwait; pthread_cond_wait; + pthread_hurd_cond_wait_np; + pthread_condattr_destroy; pthread_condattr_getclock; pthread_condattr_getpshared; pthread_condattr_init; pthread_condattr_setclock; pthread_condattr_setpshared; |