1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

htl: Rename _pthread_mutex_init/destroy to __pthread_mutex_init/destroy

This commit is contained in:
Samuel Thibault
2020-01-13 19:46:25 +00:00
parent 0093df204a
commit e775f443bd
6 changed files with 13 additions and 11 deletions

View File

@@ -51,8 +51,8 @@ static const struct pthread_functions pthread_functions = {
.ptr___pthread_exit = __pthread_exit,
.ptr_pthread_getschedparam = __pthread_getschedparam,
.ptr_pthread_setschedparam = __pthread_setschedparam,
.ptr_pthread_mutex_destroy = _pthread_mutex_destroy,
.ptr_pthread_mutex_init = _pthread_mutex_init,
.ptr_pthread_mutex_destroy = __pthread_mutex_destroy,
.ptr_pthread_mutex_init = __pthread_mutex_init,
.ptr_pthread_mutex_lock = __pthread_mutex_lock,
.ptr_pthread_mutex_trylock = __pthread_mutex_trylock,
.ptr_pthread_mutex_unlock = __pthread_mutex_unlock,