diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-03-17 01:26:54 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-03-17 01:26:54 +0100 |
commit | 09ba6794c68c123caa9706245882d87febed0aff (patch) | |
tree | 7a4526c3d6ed7115f4b2525129b7e0f254293b0d /pthread/pt-initialize.c | |
parent | 46406bc7f0a58cb2cfe7973b8c3b587a02beb74f (diff) |
Fix build against glibc 2.23
Diffstat (limited to 'pthread/pt-initialize.c')
-rw-r--r-- | pthread/pt-initialize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread/pt-initialize.c b/pthread/pt-initialize.c index 9e5404b..4435a36 100644 --- a/pthread/pt-initialize.c +++ b/pthread/pt-initialize.c @@ -61,7 +61,7 @@ static const struct pthread_functions pthread_functions = .ptr_pthread_mutex_trylock = __pthread_mutex_trylock, .ptr_pthread_mutex_unlock = __pthread_mutex_unlock, .ptr_pthread_self = __pthread_self, - .ptr_pthread_setcancelstate = __pthread_setcancelstate, + .ptr___pthread_setcancelstate = __pthread_setcancelstate, .ptr_pthread_setcanceltype = __pthread_setcanceltype, .ptr___pthread_get_cleanup_stack = __pthread_get_cleanup_stack, .ptr_pthread_once = __pthread_once, |