diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-01-20 19:52:56 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-01-20 19:52:56 +0000 |
commit | 60258bd2670e1aac497702bef2427318f3921641 (patch) | |
tree | 5e32ee3100161040575e79dd37b174d220e9246c /libpthread/linuxthreads/pthread.c | |
parent | 7dfaf230d2191da71f3078943ea09d014298e7b0 (diff) | |
download | uClibc-alpine-60258bd2670e1aac497702bef2427318f3921641.tar.bz2 uClibc-alpine-60258bd2670e1aac497702bef2427318f3921641.tar.xz |
Merge from trunk.
Diffstat (limited to 'libpthread/linuxthreads/pthread.c')
-rw-r--r-- | libpthread/linuxthreads/pthread.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libpthread/linuxthreads/pthread.c b/libpthread/linuxthreads/pthread.c index 9eb89142d..64aad7cc1 100644 --- a/libpthread/linuxthreads/pthread.c +++ b/libpthread/linuxthreads/pthread.c @@ -278,7 +278,9 @@ struct pthread_functions __pthread_functions = .ptr_pthread_sigwait = __pthread_sigwait, .ptr_pthread_raise = __pthread_raise, .ptr__pthread_cleanup_push = _pthread_cleanup_push, - .ptr__pthread_cleanup_pop = _pthread_cleanup_pop + .ptr__pthread_cleanup_push_defer = _pthread_cleanup_push_defer, + .ptr__pthread_cleanup_pop = _pthread_cleanup_pop, + .ptr__pthread_cleanup_pop_restore = _pthread_cleanup_pop_restore, }; #ifdef SHARED # define ptr_pthread_functions &__pthread_functions |