mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Export offsets of thread signal pending set and signal mask for debugger.
This commit is contained in:
parent
c4e3f62cc1
commit
0eb14dbdd6
3 changed files with 6 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue