diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-01-13 19:46:25 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-02-09 13:56:45 +0100 |
commit | e775f443bda95c0ff494879e9ee84d482292ad7e (patch) | |
tree | 4ff77e4e78ee840fbdc42c2c64c00d49418b08f2 /sysdeps/htl | |
parent | 0093df204ad5858a81cbefaaa091770071ee710b (diff) | |
download | glibc-e775f443bda95c0ff494879e9ee84d482292ad7e.zip glibc-e775f443bda95c0ff494879e9ee84d482292ad7e.tar.gz glibc-e775f443bda95c0ff494879e9ee84d482292ad7e.tar.bz2 |
htl: Rename _pthread_mutex_init/destroy to __pthread_mutex_init/destroy
Diffstat (limited to 'sysdeps/htl')
-rw-r--r-- | sysdeps/htl/pt-key.h | 2 | ||||
-rw-r--r-- | sysdeps/htl/pthreadP.h | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/htl/pt-key.h b/sysdeps/htl/pt-key.h index bfaa199..b547e8a 100644 --- a/sysdeps/htl/pt-key.h +++ b/sysdeps/htl/pt-key.h @@ -66,7 +66,7 @@ __pthread_key_lock_ready (void) err = __pthread_mutexattr_settype (&attr, PTHREAD_MUTEX_RECURSIVE); assert_perror (err); - err = _pthread_mutex_init (&__pthread_key_lock, &attr); + err = __pthread_mutex_init (&__pthread_key_lock, &attr); assert_perror (err); err = __pthread_mutexattr_destroy (&attr); diff --git a/sysdeps/htl/pthreadP.h b/sysdeps/htl/pthreadP.h index affe7cd..c6ddf76 100644 --- a/sysdeps/htl/pthreadP.h +++ b/sysdeps/htl/pthreadP.h @@ -27,7 +27,8 @@ extern pthread_t __pthread_self (void); extern int __pthread_kill (pthread_t threadid, int signo); extern struct __pthread **__pthread_threads; -extern int _pthread_mutex_init (pthread_mutex_t *mutex, const pthread_mutexattr_t *attr); +extern int __pthread_mutex_init (pthread_mutex_t *__mutex, const pthread_mutexattr_t *__attr); +extern int __pthread_mutex_destroy (pthread_mutex_t *__mutex); extern int __pthread_mutex_lock (pthread_mutex_t *__mutex); extern int __pthread_mutex_timedlock (pthread_mutex_t *__mutex, const struct timespec *__abstime); @@ -73,7 +74,7 @@ struct __pthread_cancelation_handler **___pthread_get_cleanup_stack (void) attri hidden_proto (__pthread_key_create) hidden_proto (__pthread_getspecific) hidden_proto (__pthread_setspecific) -hidden_proto (_pthread_mutex_init) +hidden_proto (__pthread_mutex_init) #endif #define ASSERT_TYPE_SIZE(type, size) \ |