summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2012-11-25 00:27:23 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2012-11-25 00:29:54 +0100
commit784fe796ddd14a15f4f2b9c84a802838e84c04f5 (patch)
treedab25f334476b1b9a5b1c1259e84cd27d370b786
parent536420a581f9f822cdef0fc460b5176a840f49e5 (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--Versions6
1 files changed, 3 insertions, 3 deletions
diff --git a/Versions b/Versions
index 81e74d0..ca975e0 100644
--- a/Versions
+++ b/Versions
@@ -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;
+ }
}