diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-31 20:54:59 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-31 20:54:59 +0000 |
commit | 44d025b3b9f97f660bb2378a7a3801ed28d65e29 (patch) | |
tree | 8111190c0de951848b8e983712e9c9eb89c1ca02 /libpthread/linuxthreads/mutex.c | |
parent | 8c2b377d28710215838741cd9778c8e7229ebf26 (diff) |
New linuxthreads builds on x86, vapier: pt-allocrtsig.c is missing from sources
Diffstat (limited to 'libpthread/linuxthreads/mutex.c')
-rw-r--r-- | libpthread/linuxthreads/mutex.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libpthread/linuxthreads/mutex.c b/libpthread/linuxthreads/mutex.c index 44229278d..3c97ea7d6 100644 --- a/libpthread/linuxthreads/mutex.c +++ b/libpthread/linuxthreads/mutex.c @@ -36,7 +36,6 @@ int __pthread_mutex_init(pthread_mutex_t * mutex, return 0; } strong_alias (__pthread_mutex_init, pthread_mutex_init) -libc_hidden_def (__pthread_mutex_init) int __pthread_mutex_destroy(pthread_mutex_t * mutex) { @@ -56,7 +55,6 @@ int __pthread_mutex_destroy(pthread_mutex_t * mutex) } } strong_alias (__pthread_mutex_destroy, pthread_mutex_destroy) -libc_hidden_def (__pthread_mutex_destroy) int __pthread_mutex_trylock(pthread_mutex_t * mutex) { @@ -93,7 +91,6 @@ int __pthread_mutex_trylock(pthread_mutex_t * mutex) } } strong_alias (__pthread_mutex_trylock, pthread_mutex_trylock) -libc_hidden_def (__pthread_mutex_trylock) int __pthread_mutex_lock(pthread_mutex_t * mutex) { @@ -127,7 +124,6 @@ int __pthread_mutex_lock(pthread_mutex_t * mutex) } } strong_alias (__pthread_mutex_lock, pthread_mutex_lock) -libc_hidden_def (__pthread_mutex_lock) int __pthread_mutex_timedlock (pthread_mutex_t *mutex, const struct timespec *abstime) @@ -203,7 +199,6 @@ int __pthread_mutex_unlock(pthread_mutex_t * mutex) } } strong_alias (__pthread_mutex_unlock, pthread_mutex_unlock) -libc_hidden_def (__pthread_mutex_unlock) int __pthread_mutexattr_init(pthread_mutexattr_t *attr) { |