diff options
author | Christopher Faylor <me@cgf.cx> | 2003-09-13 17:14:15 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-09-13 17:14:15 +0000 |
commit | 276448cf67102d31ccd1c5b4186ac84aeeabf9d2 (patch) | |
tree | 73b24056d7a9df2a389957df9565e85b8338fc54 /winsup/cygwin/include/sys/cygwin.h | |
parent | 4442ed917116bd362a591a418430b3a173ca6b26 (diff) | |
download | cygnal-276448cf67102d31ccd1c5b4186ac84aeeabf9d2.tar.gz cygnal-276448cf67102d31ccd1c5b4186ac84aeeabf9d2.tar.bz2 cygnal-276448cf67102d31ccd1c5b4186ac84aeeabf9d2.zip |
* include/sys/cygwin.h: Rename PID_UNUSED to PID_MAP_RW.
* pinfo.cc (pinfo_init): Initialize myself->gid.
(pinfo::init): Create the "access" variable, set it appropriately and use it to
specify the requested access.
* exceptions.cc (sig_handle_tty_stop): Add PID_MAP_RW in pinfo parent.
* signal.cc (kill_worker): Ditto for pinfo dest.
* syscalls.cc (setpgid): Ditto for pinfo p.
Diffstat (limited to 'winsup/cygwin/include/sys/cygwin.h')
-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 9dd46db16..36c3f53b1 100644 --- a/winsup/cygwin/include/sys/cygwin.h +++ b/winsup/cygwin/include/sys/cygwin.h @@ -89,7 +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_UNUSED = 0x0100, /* ... */ + PID_MAP_RW = 0x0100, /* Flag to open map rw. */ 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. */ |