diff options
author | Christopher Faylor <me@cgf.cx> | 2000-11-04 05:54:57 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-11-04 05:54:57 +0000 |
commit | e46db834d9c80be876d4ad9724fa5e9762c54528 (patch) | |
tree | 8572cf803d6c22421c35d34462a33d29a94139b4 /winsup/cygwin/sigproc.h | |
parent | 46209564d41817b5d75671692152ccf3ae964dac (diff) | |
download | cygnal-e46db834d9c80be876d4ad9724fa5e9762c54528.tar.gz cygnal-e46db834d9c80be876d4ad9724fa5e9762c54528.tar.bz2 cygnal-e46db834d9c80be876d4ad9724fa5e9762c54528.zip |
* pinfo.cc (EnumProcessesNT): Avoid 0 pids.
(EnumProcesses9x): Ditto.
* sigproc.cc (remove_childe): Eliminate.
(proc_subproc): Move remove_child stuff here.
(wait_subproc): Synchronize with proc_subproc when error occurs. Add more
debugging info.
* sigproc.h (procstuff): Add an entry.
* spawn.cc (spawn_guts): Add sigframe here.
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 5a8e808fc..40f518777 100644 --- a/winsup/cygwin/sigproc.h +++ b/winsup/cygwin/sigproc.h @@ -20,7 +20,8 @@ enum procstuff PROC_CHILDSTOPPED = 2, // a child stopped PROC_CHILDTERMINATED = 3, // a child died PROC_CLEARWAIT = 4, // clear all waits - signal arrived - PROC_WAIT = 5 // setup for wait() for subproc + PROC_WAIT = 5, // setup for wait() for subproc + PROC_NOTHING = 6 // nothing, really }; typedef struct struct_waitq |