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:
authorCorinna Vinschen <corinna@vinschen.de>2011-10-06 23:47:45 +0400
committerCorinna Vinschen <corinna@vinschen.de>2011-10-06 23:47:45 +0400
commit852908e82d2f5e192113a11ead413214a135293e (patch)
tree4871f5845b8bd14ced1ed386626b8764dac145a9 /winsup/cygwin/sigproc.h
parentefe716bb8eb2a8e34c4b5e5df658221778b4312e (diff)
* fhandler_termios.cc (fhandler_termios::tcsetpgrp): Send __SIGSETPGRP
pseudo signal to process group instead of just calling init_console_handler. * sigproc.cc (wait_sig): Call init_console_handler here on __SIGSETPGRP signal. * sigproc.h (__SIGSETPGRP): Define.
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 ee6e7d537..f1f6b6463 100644
--- a/winsup/cygwin/sigproc.h
+++ b/winsup/cygwin/sigproc.h
@@ -23,7 +23,8 @@ enum
__SIGFLUSHFAST = -(NSIG + 6),
__SIGHOLD = -(NSIG + 7),
__SIGNOHOLD = -(NSIG + 8),
- __SIGEXIT = -(NSIG + 9)
+ __SIGEXIT = -(NSIG + 9),
+ __SIGSETPGRP = -(NSIG + 10)
};
#endif