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>2005-09-16 07:16:17 +0400
committerChristopher Faylor <me@cgf.cx>2005-09-16 07:16:17 +0400
commit882dfbf776f69b39aeb5f444525191327fb3a3d9 (patch)
tree978c5651bcb3ee3bd999240498f67126572fba1b /winsup/cygwin/pinfo.h
parent150f3bd16864bfb1a8ab10904924fcee7feeb621 (diff)
* pinfo.h (EXITCODE_SET): Move out of range of Windows error.
(EXITCODE_NOSET): Ditto. * sigproc.cc (no_signals_available): Remove check for hwait_sig. Just rely on my_sendsig. Pass in an argument controlling when it is appropriate to test EXITCODE_SET. (proc_can_be_signalled): Remove checks for myself since this function is never called in that context. (sigproc_init): Pre-initialize my_sendsig to non-zero so that proc_can_be_signalled will know that we expect to be signalable soon. (sig_send): Change debugging output.
Diffstat (limited to 'winsup/cygwin/pinfo.h')
-rw-r--r--winsup/cygwin/pinfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/pinfo.h b/winsup/cygwin/pinfo.h
index 5f39f592a..564f6f798 100644
--- a/winsup/cygwin/pinfo.h
+++ b/winsup/cygwin/pinfo.h
@@ -31,8 +31,8 @@ enum picom
PICOM_PIPE_FHANDLER = 7
};
-#define EXITCODE_SET 0x80000000
-#define EXITCODE_NOSET 0x40000000
+#define EXITCODE_SET 0x8000000
+#define EXITCODE_NOSET 0x4000000
class fhandler_pipe;