summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/include/sys/cygwin.h
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-09-09 03:11:31 +0000
committerChristopher Faylor <me@cgf.cx>2003-09-09 03:11:31 +0000
commit3ef50005c759d5dbdb5a7b31730bf836a6519ab0 (patch)
tree98ecbe813337b26be5f350ef585952df14df6455 /winsup/cygwin/include/sys/cygwin.h
parent51d340e1c801b82e5e8b58b48639d46681d33f4c (diff)
downloadcygnal-3ef50005c759d5dbdb5a7b31730bf836a6519ab0.tar.gz
cygnal-3ef50005c759d5dbdb5a7b31730bf836a6519ab0.tar.bz2
cygnal-3ef50005c759d5dbdb5a7b31730bf836a6519ab0.zip
* dcrt0.cc (dlL_crt0_1): Set __argc_safe after __argc is absolutely know to be
set. * exceptions.cc (sig_handle_tty_stop): Don't reset sigCONT event since it is reset automatically. * fork.cc (fork): Remove obsolete usage of PID_SPLIT_HEAP. * include/sys/cygwin.h: Ditto. * sigproc.cc (sig_send): Use sigframe init method to set frame since it checks for previous ownership of the frame. * sigproc.h (sigframe::init): Accept an "is_exception" argument.
Diffstat (limited to 'winsup/cygwin/include/sys/cygwin.h')
-rw-r--r--winsup/cygwin/include/sys/cygwin.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/include/sys/cygwin.h b/winsup/cygwin/include/sys/cygwin.h
index e117175e0..9dd46db16 100644
--- a/winsup/cygwin/include/sys/cygwin.h
+++ b/winsup/cygwin/include/sys/cygwin.h
@@ -89,8 +89,7 @@ enum
PID_ORPHANED = 0x0020, /* Member of an orphaned process group. */
PID_ACTIVE = 0x0040, /* Pid accepts signals. */
PID_CYGPARENT = 0x0080, /* Set if parent was a cygwin app. */
- PID_SPLIT_HEAP = 0x0100, /* Set if the heap has been split, */
- /* which means we can't fork again. */
+ PID_UNUSED = 0x0100, /* ... */
PID_MYSELF = 0x0200, /* Flag that pid is me. */
PID_NOCLDSTOP = 0x0400, /* Set if no SIGCHLD signal on stop. */
PID_INITIALIZING = 0x0800, /* Set until ready to receive signals. */