diff options
author | Christopher Faylor <me@cgf.cx> | 2004-01-21 06:28:35 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-01-21 06:28:35 +0000 |
commit | bcb4223cbc9de4519eefa039d142dd91df3c8318 (patch) | |
tree | e8325ef1f57b6ae10bd03618fe6de1e9e7c4a566 /winsup/cygwin/sigproc.h | |
parent | 1284fa137fafa9b8f4ea5539044b4cf7537a026f (diff) | |
download | cygnal-bcb4223cbc9de4519eefa039d142dd91df3c8318.tar.gz cygnal-bcb4223cbc9de4519eefa039d142dd91df3c8318.tar.bz2 cygnal-bcb4223cbc9de4519eefa039d142dd91df3c8318.zip |
* fhandler_tty.cc (fhandler_tty::ioctl): Semi-revert 2003-09-26 change for
TIOCSWINSZ. It is not an error for ioctl_request_event to be missing.
* sigproc.cc (pending_signals::save): New function.
(pending_signals::restore): Ditto.
(sig_clear): Save/restore current queue pointer.
(wait_sig): Delete signals marked as such.
* sigproc.h (__SIGDELETE): New enum.
Diffstat (limited to 'winsup/cygwin/sigproc.h')
-rw-r--r-- | winsup/cygwin/sigproc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.h b/winsup/cygwin/sigproc.h index 03ee1b89b..9c9608901 100644 --- a/winsup/cygwin/sigproc.h +++ b/winsup/cygwin/sigproc.h @@ -22,7 +22,8 @@ enum __SIGFLUSH = -(NSIG + 1), __SIGSTRACE = -(NSIG + 2), __SIGCOMMUNE = -(NSIG + 3), - __SIGPENDING = -(NSIG + 4) + __SIGPENDING = -(NSIG + 4), + __SIGDELETE = -(NSIG + 5) }; #endif |