1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Export offsets of thread signal pending set and signal mask for debugger.

This commit is contained in:
David Xu 2006-05-17 04:59:59 +00:00
parent c4e3f62cc1
commit 0eb14dbdd6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=158679
3 changed files with 6 additions and 0 deletions

View File

@ -77,3 +77,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);

View File

@ -723,6 +723,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;

View File

@ -77,3 +77,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);