diff options
author | David Xu <davidxu@FreeBSD.org> | 2010-01-05 02:37:59 +0000 |
---|---|---|
committer | David Xu <davidxu@FreeBSD.org> | 2010-01-05 02:37:59 +0000 |
commit | 9b0f1823b59d52c97a3ee8ee92d81d9d084ca52c (patch) | |
tree | c7f16cd6fa7d769efff569dabd92c58350947dcf /lib/libthr/thread/thr_init.c | |
parent | 06b215fd3a1386ae7c16cf12eb3da1dd297b0783 (diff) |
Notes
Diffstat (limited to 'lib/libthr/thread/thr_init.c')
-rw-r--r-- | lib/libthr/thread/thr_init.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_init.c b/lib/libthr/thread/thr_init.c index f96bba9c617a..1bfdd287c203 100644 --- a/lib/libthr/thread/thr_init.c +++ b/lib/libthr/thread/thr_init.c @@ -246,7 +246,9 @@ static pthread_func_t jmp_table[][2] = { {DUAL_ENTRY(_pthread_setcanceltype)}, /* PJT_SETCANCELTYPE */ {DUAL_ENTRY(_pthread_setspecific)}, /* PJT_SETSPECIFIC */ {DUAL_ENTRY(_pthread_sigmask)}, /* PJT_SIGMASK */ - {DUAL_ENTRY(_pthread_testcancel)} /* PJT_TESTCANCEL */ + {DUAL_ENTRY(_pthread_testcancel)}, /* PJT_TESTCANCEL */ + {DUAL_ENTRY(__pthread_cleanup_pop_imp)},/* PJT_CLEANUP_POP_IMP */ + {DUAL_ENTRY(__pthread_cleanup_push_imp)}/* PJT_CLEANUP_PUSH_IMP */ }; static int init_once = 0; |