diff options
author | Christopher Faylor <me@cgf.cx> | 2000-11-16 05:16:59 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-11-16 05:16:59 +0000 |
commit | 0d675c5d7f2493995ca7831c215b215d4b9bbe3a (patch) | |
tree | 5ee7cdaa6510aabfdefdbe5c17eeb40401507afd /winsup/cygwin/perthread.h | |
parent | cb6f4dbd0c842331a3020b5af31318797cd9a65a (diff) | |
download | cygnal-0d675c5d7f2493995ca7831c215b215d4b9bbe3a.tar.gz cygnal-0d675c5d7f2493995ca7831c215b215d4b9bbe3a.tar.bz2 cygnal-0d675c5d7f2493995ca7831c215b215d4b9bbe3a.zip |
* sigproc.cc (wait_sig): Remove unneeded for loop iteration.
* exceptions.cc (interrupt_setup): Don't set signal mask here or races occur
with main thread. Set it in sigdelayed instead.
(sigreturn): Reflect change in stack order of ebp and flags.
(sigdelayed): Set stack frame correctly. Call set_process_mask here with flags
for last trapped signal.
(signal_dispatch): Add newmask.
* sigproc.cc (wait_sig): Eliminate ill-considered attempt to halt looping
signal processors.
Diffstat (limited to 'winsup/cygwin/perthread.h')
-rw-r--r-- | winsup/cygwin/perthread.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/perthread.h b/winsup/cygwin/perthread.h index f4c82c0ec..89b97d4fb 100644 --- a/winsup/cygwin/perthread.h +++ b/winsup/cygwin/perthread.h @@ -97,6 +97,7 @@ struct signal_dispatch int sig; int saved_errno; DWORD oldmask; + DWORD newmask; DWORD retaddr; DWORD *retaddr_on_stack; }; |