diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-25 20:35:27 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-01-25 20:35:27 +0000 |
commit | 312e822571217b30e7ecd7843621c57d4af6f835 (patch) | |
tree | 9ae2f1b93348d24f285a8029f298c0fb2d56fe4c /libpthread/linuxthreads.old/internals.h | |
parent | c24a610e7adc577dd888154169a98616c455452e (diff) |
Modify the earlier changes, because libc-lock references __pthread_mutex*, dont use hidden_strong_alias
Diffstat (limited to 'libpthread/linuxthreads.old/internals.h')
-rw-r--r-- | libpthread/linuxthreads.old/internals.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libpthread/linuxthreads.old/internals.h b/libpthread/linuxthreads.old/internals.h index 54a80c09b..87ff1c194 100644 --- a/libpthread/linuxthreads.old/internals.h +++ b/libpthread/linuxthreads.old/internals.h @@ -509,6 +509,12 @@ extern __typeof(read) __libc_read; extern __typeof(waitpid) __libc_waitpid; extern __typeof(write) __libc_write; +extern __typeof(pthread_mutex_init) __pthread_mutex_init attribute_hidden; +extern __typeof(pthread_mutex_destroy) __pthread_mutex_destroy attribute_hidden; +extern __typeof(pthread_mutex_lock) __pthread_mutex_lock attribute_hidden; +extern __typeof(pthread_mutex_trylock) __pthread_mutex_trylock attribute_hidden; +extern __typeof(pthread_mutex_unlock) __pthread_mutex_attribute_hidden; + /* Prototypes for some of the new semaphore functions. */ extern int __new_sem_post (sem_t * sem); |