MFC following revisions:

pthread.map		1.18
	thread/thr_symbols.c	1.4
This commit is contained in:
davidxu 2006-05-23 11:33:57 +00:00
parent fa42b82744
commit b498504cfb
2 changed files with 4 additions and 0 deletions

View File

@ -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;

View File

@ -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);