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>2003-09-13 21:14:15 +0400
committerChristopher Faylor <me@cgf.cx>2003-09-13 21:14:15 +0400
commit276448cf67102d31ccd1c5b4186ac84aeeabf9d2 (patch)
tree73b24056d7a9df2a389957df9565e85b8338fc54 /winsup/cygwin/signal.cc
parent4442ed917116bd362a591a418430b3a173ca6b26 (diff)
* 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/signal.cc')
-rw-r--r--winsup/cygwin/signal.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/signal.cc b/winsup/cygwin/signal.cc
index 133f192b4..5ee4cc71a 100644
--- a/winsup/cygwin/signal.cc
+++ b/winsup/cygwin/signal.cc
@@ -173,7 +173,7 @@ kill_worker (pid_t pid, int sig)
sig_dispatch_pending ();
int res = 0;
- pinfo dest (pid);
+ pinfo dest (pid, PID_MAP_RW);
BOOL sendSIGCONT;
if (!dest)