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:
authorPierre Humblet <phumblet@phumblet.no-ip.org>2003-09-27 06:30:46 +0400
committerPierre Humblet <phumblet@phumblet.no-ip.org>2003-09-27 06:30:46 +0400
commitecc28ff8db7c43779f328d31633d5f8358a3cf5b (patch)
tree68c1b7d0b43abd0d2103fcb3b656ce34f697767b /winsup/cygwin/signal.cc
parent1eb451937a4b977e050ba7f2a6dd93e7a6baf23c (diff)
2003-09-26 Pierre Humblet <pierre.humblet@ieee.org>
* pinfo.cc (pinfo::init): Do not give FILE_MAP_WRITE access to Everybody. * exceptions.cc (sig_handle_tty_stop): Do not create pinfo parent with PID_MAP_WRITE. * fhandler_process.cc (fhandler_process::fill_filebuf): Ditto for pinfo p. * signal.cc (kill_worker): Ditto for pinfo dest.
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 a7e25ea46..7f6fcbe44 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, PID_MAP_RW);
+ pinfo dest (pid);
BOOL sendSIGCONT;
if (!dest)