diff options
| author | David Xu <davidxu@FreeBSD.org> | 2003-12-29 23:33:51 +0000 |
|---|---|---|
| committer | David Xu <davidxu@FreeBSD.org> | 2003-12-29 23:33:51 +0000 |
| commit | 4560f4f0b11f2e80c2b36507083a1fa0faa3a88e (patch) | |
| tree | 981be2eabc8d7bf562c798ba605642f6b93498cd /lib/libpthread | |
| parent | 02eead1d0a61242b863cd813b59eca6e4d4b8a04 (diff) | |
Notes
Diffstat (limited to 'lib/libpthread')
| -rw-r--r-- | lib/libpthread/thread/thr_private.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libpthread/thread/thr_private.h b/lib/libpthread/thread/thr_private.h index 98672bf109c6..73c9e284e398 100644 --- a/lib/libpthread/thread/thr_private.h +++ b/lib/libpthread/thread/thr_private.h @@ -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 |
