Forgot to commit this file for last commit. :(

This commit is contained in:
David Xu 2003-12-29 23:33:51 +00:00
parent 02eead1d0a
commit 4560f4f0b1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123975
2 changed files with 8 additions and 0 deletions

View File

@ -798,6 +798,9 @@ struct pthread {
struct pthread_specific_elem *specific;
int specific_data_count;
/* Alternative stack for sigaltstack() */
stack_t sigstk;
/*
* Current locks bitmap for rtld.
*/
@ -1154,6 +1157,7 @@ void _thr_hash_add(struct pthread *);
void _thr_hash_remove(struct pthread *);
struct pthread *_thr_hash_find(struct pthread *);
void _thr_finish_cancellation(void *arg);
int _thr_sigonstack(void *sp);
/*
* Aliases for _pthread functions. Should be called instead of

View File

@ -798,6 +798,9 @@ struct pthread {
struct pthread_specific_elem *specific;
int specific_data_count;
/* Alternative stack for sigaltstack() */
stack_t sigstk;
/*
* Current locks bitmap for rtld.
*/
@ -1154,6 +1157,7 @@ void _thr_hash_add(struct pthread *);
void _thr_hash_remove(struct pthread *);
struct pthread *_thr_hash_find(struct pthread *);
void _thr_finish_cancellation(void *arg);
int _thr_sigonstack(void *sp);
/*
* Aliases for _pthread functions. Should be called instead of