diff options
author | Christopher Faylor <me@cgf.cx> | 2001-01-12 05:38:25 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-01-12 05:38:25 +0000 |
commit | c3d62298ba6caadf2babd191951305ca2e389596 (patch) | |
tree | d4e0f386f548655e8efd8271615e15b70161245e /winsup/cygwin/perthread.h | |
parent | e45ab89012ee7415606dcd7c664cd5c4c14e5baf (diff) | |
download | cygnal-c3d62298ba6caadf2babd191951305ca2e389596.tar.gz cygnal-c3d62298ba6caadf2babd191951305ca2e389596.tar.bz2 cygnal-c3d62298ba6caadf2babd191951305ca2e389596.zip |
* debug.h: Add regparm attributes to some functions.
* signal.cc (sigaction): Don't treat SIGCONT specially.
* exceptions.cc (interrupt_setup): Save sa_flags of interrupted signal for
later use.
(sig_handler): Default any stopping signal to SIGSTOP.
(call_signal_handler): New function.
(sigdelayed0): New function.
* sigproc.cc (sigproc_init): Initialize SIGSTOP sigaction for special behavior.
* sigproc.h: Define call_signal_handler.
* syscalls.cc (_read): Allow restartable signal behavior.
Diffstat (limited to 'winsup/cygwin/perthread.h')
-rw-r--r-- | winsup/cygwin/perthread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/perthread.h b/winsup/cygwin/perthread.h index 89b97d4fb..889a5d8c4 100644 --- a/winsup/cygwin/perthread.h +++ b/winsup/cygwin/perthread.h @@ -1,6 +1,6 @@ /* perthread.h: Header file for cygwin synchronization primitives. - Copyright 2000 Cygnus Solutions. + Copyright 2000, 2001 Red Hat, Inc. Written by Christopher Faylor <cgf@cygnus.com> @@ -96,6 +96,7 @@ struct signal_dispatch void (*func) (int); int sig; int saved_errno; + int sa_flags; DWORD oldmask; DWORD newmask; DWORD retaddr; |