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 | |
parent | 6162364368b2092b2bd7b1ba26366ba9a841787a (diff) | |
download | glibc-3a4f2043a1b1cce35edf588681433720bf2c2374.tar.gz glibc-3a4f2043a1b1cce35edf588681433720bf2c2374.tar.xz glibc-3a4f2043a1b1cce35edf588681433720bf2c2374.zip |
Update.
* pthreadP.h: Mark __pthread_mutex_unlock_usercnt also hidden. * pthread_mutex_unlock.c (__pthread_mutex_unlock_usercnt): Add attribute_hidden.
-rw-r--r-- | nptl/Banner | 2 | ||||
-rw-r--r-- | nptl/ChangeLog | 4 | ||||
-rw-r--r-- | nptl/pthreadP.h | 3 | ||||
-rw-r--r-- | nptl/pthread_mutex_unlock.c | 2 |
4 files changed, 8 insertions, 3 deletions
diff --git a/nptl/Banner b/nptl/Banner index 03776acd77..c44e8f4c2e 100644 --- a/nptl/Banner +++ b/nptl/Banner @@ -1 +1 @@ -NPTL 0.47 by Ulrich Drepper +NPTL 0.48 by Ulrich Drepper diff --git a/nptl/ChangeLog b/nptl/ChangeLog index c6047d3b3b..9a8f0a3800 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,5 +1,9 @@ 2003-06-22 Ulrich Drepper <drepper@redhat.com> + * pthreadP.h: Mark __pthread_mutex_unlock_usercnt also hidden. + * pthread_mutex_unlock.c (__pthread_mutex_unlock_usercnt): Add + attribute_hidden. + * pthreadP.h (__pthread_mutex_init_internal): Mark hidden. (__pthread_mutex_lock_internal): Likewise. (__pthread_mutex_unlock_internal): Likewise. diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index be40ce92ea..64d0657659 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); diff --git a/nptl/pthread_mutex_unlock.c b/nptl/pthread_mutex_unlock.c index 56b1cd4a9a..de820d7401 100644 --- a/nptl/pthread_mutex_unlock.c +++ b/nptl/pthread_mutex_unlock.c @@ -23,7 +23,7 @@ int -internal_function +internal_function attribute_hidden __pthread_mutex_unlock_usercnt (mutex, decr) pthread_mutex_t *mutex; bool decr; |