diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-11-25 00:27:23 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-11-25 00:29:54 +0100 |
commit | 784fe796ddd14a15f4f2b9c84a802838e84c04f5 (patch) | |
tree | dab25f334476b1b9a5b1c1259e84cd27d370b786 | |
parent | 536420a581f9f822cdef0fc460b5176a840f49e5 (diff) |
Fix pthread_hurd_cond_wait_np versions
* Version: Do not include pthread_hurd_cond_wait_np in libc, as we don't
define a forward for it. Include pthread_hurd_cond_wait_np in version
GLIBC_2.17 of libpthread, as this is a new symbol.
-rw-r--r-- | Versions | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -10,7 +10,6 @@ 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; @@ -73,8 +72,6 @@ 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; @@ -132,4 +129,7 @@ libpthread { __pthread_spin_lock; __pthread_spin_trylock; __pthread_spin_unlock; _pthread_spin_lock; } + GLIBC_2.17 { + pthread_hurd_cond_wait_np; + } } |