mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-31 14:01:18 +08:00
Update.
* pthreadP.h: Mark __pthread_mutex_unlock_usercnt also hidden. * pthread_mutex_unlock.c (__pthread_mutex_unlock_usercnt): Add attribute_hidden.
This commit is contained in:
parent
6162364368
commit
3a4f2043a1
@ -1 +1 @@
|
||||
NPTL 0.47 by Ulrich Drepper
|
||||
NPTL 0.48 by Ulrich Drepper
|
||||
|
@ -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.
|
||||
|
@ -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);
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
|
||||
int
|
||||
internal_function
|
||||
internal_function attribute_hidden
|
||||
__pthread_mutex_unlock_usercnt (mutex, decr)
|
||||
pthread_mutex_t *mutex;
|
||||
bool decr;
|
||||
|
Loading…
x
Reference in New Issue
Block a user