diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-23 01:29:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-23 01:29:14 +0000 |
commit | 3a4f2043a1b1cce35edf588681433720bf2c2374 (patch) | |
tree | 8eeb90243fdb83f9c7e2961d5cf0203559bd0711 /nptl/pthreadP.h | |
parent | 6162364368b2092b2bd7b1ba26366ba9a841787a (diff) | |
download | glibc-3a4f2043a1b1cce35edf588681433720bf2c2374.zip glibc-3a4f2043a1b1cce35edf588681433720bf2c2374.tar.gz glibc-3a4f2043a1b1cce35edf588681433720bf2c2374.tar.bz2 |
Update.
* pthreadP.h: Mark __pthread_mutex_unlock_usercnt also hidden.
* pthread_mutex_unlock.c (__pthread_mutex_unlock_usercnt): Add
attribute_hidden.
Diffstat (limited to 'nptl/pthreadP.h')
-rw-r--r-- | nptl/pthreadP.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index be40ce9..64d0657 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -259,7 +259,8 @@ extern int __pthread_mutex_unlock (pthread_mutex_t *__mutex); extern int __pthread_mutex_unlock_internal (pthread_mutex_t *__mutex) attribute_hidden; extern int __pthread_mutex_unlock_usercnt (pthread_mutex_t *__mutex, - bool __decr) internal_function; + bool __decr) + attribute_hidden internal_function; extern int __pthread_mutexattr_init (pthread_mutexattr_t *attr); extern int __pthread_mutexattr_destroy (pthread_mutexattr_t *attr); extern int __pthread_mutexattr_settype (pthread_mutexattr_t *attr, int kind); |