diff options
author | jasone <jasone@FreeBSD.org> | 2000-01-20 04:46:52 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2000-01-20 04:46:52 +0000 |
commit | 3d706405069c7f125b5f99b7c1bc918740b2c426 (patch) | |
tree | 33117cde5ed6bd353bb777bf9f01ec6e50ebdd44 /lib/libpthread/thread/thr_private.h | |
parent | 271b33587d1dec543e4b44ec4200f0262b78b981 (diff) | |
download | FreeBSD-src-3d706405069c7f125b5f99b7c1bc918740b2c426.zip FreeBSD-src-3d706405069c7f125b5f99b7c1bc918740b2c426.tar.gz |
Do signal deferral for pthread_kill() as it was done in the old days.
Submitted by: deischen
Diffstat (limited to 'lib/libpthread/thread/thr_private.h')
-rw-r--r-- | lib/libpthread/thread/thr_private.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/libpthread/thread/thr_private.h b/lib/libpthread/thread/thr_private.h index 8bc2d3f..560ea44 100644 --- a/lib/libpthread/thread/thr_private.h +++ b/lib/libpthread/thread/thr_private.h @@ -572,11 +572,6 @@ struct pthread { sigset_t sigmask; sigset_t sigpend; -#ifndef _NO_UNDISPATCH - /* Non-zero if there are undispatched signals for this thread. */ - int undispatched_signals; -#endif - /* Thread state: */ enum pthread_state state; enum pthread_state oldstate; |