diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-03-22 14:58:56 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-03-22 14:58:56 +0100 |
commit | 5cabccda3c3fdfd44ac5a6bbb8f2d235270fceb4 (patch) | |
tree | ea136d1e630e938c00a791a55d50d0860e6c18fa | |
parent | b1cd77fe6e132d0468e14e05abf0ef39e83a1262 (diff) |
Fix build after 32b1b38
* sysdeps/pthread/pthread-functions.h (pthread_functions): Rename
ptr_pthread_exit field to ptr___pthread_exit.
* pthread/pt-initialize.c (pthread_functions): Likewise.
-rw-r--r-- | pthread/pt-initialize.c | 2 | ||||
-rw-r--r-- | sysdeps/pthread/pthread-functions.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pthread/pt-initialize.c b/pthread/pt-initialize.c index aa3cf82..9e5404b 100644 --- a/pthread/pt-initialize.c +++ b/pthread/pt-initialize.c @@ -52,7 +52,7 @@ static const struct pthread_functions pthread_functions = .ptr_pthread_cond_wait = __pthread_cond_wait, .ptr_pthread_cond_timedwait = __pthread_cond_timedwait, .ptr_pthread_equal = __pthread_equal, - .ptr_pthread_exit = __pthread_exit, + .ptr___pthread_exit = __pthread_exit, .ptr_pthread_getschedparam = __pthread_getschedparam, .ptr_pthread_setschedparam = __pthread_setschedparam, .ptr_pthread_mutex_destroy = _pthread_mutex_destroy, diff --git a/sysdeps/pthread/pthread-functions.h b/sysdeps/pthread/pthread-functions.h index d236822..7fc4a53 100644 --- a/sysdeps/pthread/pthread-functions.h +++ b/sysdeps/pthread/pthread-functions.h @@ -103,7 +103,7 @@ struct pthread_functions int (*ptr_pthread_cond_timedwait) (pthread_cond_t *, pthread_mutex_t *, const struct timespec *); int (*ptr_pthread_equal) (pthread_t, pthread_t); - void (*ptr_pthread_exit) (void *); + void (*ptr___pthread_exit) (void *); int (*ptr_pthread_getschedparam) (pthread_t, int *, struct sched_param *); int (*ptr_pthread_setschedparam) (pthread_t, int, const struct sched_param *); |