From b498504cfb15409c78d34046912ead5b40dd7f04 Mon Sep 17 00:00:00 2001 From: davidxu Date: Tue, 23 May 2006 11:33:57 +0000 Subject: [PATCH] MFC following revisions: pthread.map 1.18 thread/thr_symbols.c 1.4 --- lib/libpthread/pthread.map | 2 ++ lib/libpthread/thread/thr_symbols.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/lib/libpthread/pthread.map b/lib/libpthread/pthread.map index e13f4a029a1c..910fbc1296d2 100644 --- a/lib/libpthread/pthread.map +++ b/lib/libpthread/pthread.map @@ -358,6 +358,8 @@ global: _thread_off_key_destructor; _thread_off_kse; _thread_off_kse_locklevel; + _thread_off_sigmask; + _thread_off_sigpend; _thread_off_state; _thread_off_thr_locklevel; _thread_off_tlsindex; diff --git a/lib/libpthread/thread/thr_symbols.c b/lib/libpthread/thread/thr_symbols.c index 10e9402a6032..9465af4b8e42 100644 --- a/lib/libpthread/thread/thr_symbols.c +++ b/lib/libpthread/thread/thr_symbols.c @@ -59,3 +59,5 @@ int _thread_off_dtv = DTV_OFFSET; int _thread_off_state = offsetof(struct pthread, state); int _thread_state_running = PS_RUNNING; int _thread_state_zoombie = PS_DEAD; +int _thread_off_sigmask = offsetof(struct pthread, sigmask); +int _thread_off_sigpend = offsetof(struct pthread, sigpend);