diff options
author | Christopher Faylor <me@cgf.cx> | 2013-12-18 03:58:11 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2013-12-18 03:58:11 +0000 |
commit | 13621d2ef873ae1d7203592798803d378a2d3fa4 (patch) | |
tree | 2ecdb3e7b5d8db1fc54c4abf757a2fa82ca4a63f /winsup/cygwin/include/sys | |
parent | 1147c2111d9d02133c7192b900ae7d0c74d2622c (diff) | |
download | cygnal-13621d2ef873ae1d7203592798803d378a2d3fa4.tar.gz cygnal-13621d2ef873ae1d7203592798803d378a2d3fa4.tar.bz2 cygnal-13621d2ef873ae1d7203592798803d378a2d3fa4.zip |
* external.cc (fillout_pinfo): Remove nonsensical loop.
* fork.cc (frok::parent): When initializing pinfo for child new PID_NEW flag +
actual defined constant rather than raw number. Don't set start_time here.
* pinfo.cc (pinfo::thisproc): Use PID_NEW when initializing pinfo. Avoid
checking h for NULL multiple times. Don't set start_time here.
(pinfo_init): Aways set ppid last. Tweak strace output.
(pinfo::init): Handle new PID_NEW flag. Wait for shared memory to contain
useful information. Set start_time if PID_NEW.
(_onreturn:h): Define as HANDLE rather than HANDLE *.
(_onreturn::~onreturn): Accommodate h definition change.
(_onreturn::no_close_handle): Rename from no_close_p_handle. Take a pinfo arg
and set hProcess to h before zeroing.
(winpids::add): Don't open a handle to our own process. Change logic
associated with when a handle gets closed. Accommodate no_close_handle
changes.
(winpids::enum_processes): Simplify process enumeration loop.
(winpids::set): Eliminate ill-considered malloc locking.
* sigproc.cc (proc_subproc): Always set ppid last.
Diffstat (limited to 'winsup/cygwin/include/sys')
-rw-r--r-- | winsup/cygwin/include/sys/cygwin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/include/sys/cygwin.h b/winsup/cygwin/include/sys/cygwin.h index ca2f92996..705aa7f64 100644 --- a/winsup/cygwin/include/sys/cygwin.h +++ b/winsup/cygwin/include/sys/cygwin.h @@ -220,7 +220,7 @@ enum PID_MYSELF = 0x00200, /* Flag that pid is me. */ PID_NOCLDSTOP = 0x00400, /* Set if no SIGCHLD signal on stop. */ PID_INITIALIZING = 0x00800, /* Set until ready to receive signals. */ - PID_UNUSED1 = 0x01000, /* Available. */ + PID_NEW = 0x01000, /* Available. */ PID_ALLPIDS = 0x02000, /* used by pinfo scanner */ PID_EXECED = 0x04000, /* redirect to original pid info block */ PID_NOREDIR = 0x08000, /* don't redirect if execed */ |