Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2004-01-21 09:28:35 +0300
committerChristopher Faylor <me@cgf.cx>2004-01-21 09:28:35 +0300
commitbcb4223cbc9de4519eefa039d142dd91df3c8318 (patch)
treee8325ef1f57b6ae10bd03618fe6de1e9e7c4a566 /winsup/cygwin/sigproc.h
parent1284fa137fafa9b8f4ea5539044b4cf7537a026f (diff)
* 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.h3
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