diff options
author | Christopher Faylor <me@cgf.cx> | 2003-09-17 01:15:56 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-09-17 01:15:56 +0000 |
commit | deb648cc8b95ec4b7a5b604d958abd338347811f (patch) | |
tree | a0ca911611ebeb6b0b74ec3cbe09dfd230af5380 /winsup/cygwin/fhandler_termios.cc | |
parent | 1498189ca897347251470f3dd35e97d2f20f0f4b (diff) | |
download | cygnal-deb648cc8b95ec4b7a5b604d958abd338347811f.tar.gz cygnal-deb648cc8b95ec4b7a5b604d958abd338347811f.tar.bz2 cygnal-deb648cc8b95ec4b7a5b604d958abd338347811f.zip |
* pinfo.h (winpids::pid_access): New element.
(winpids::winpids): Rejigger to set pinfo_access.
* pinfo.cc (winpids::add): Try to open shared memory region with supplied
pinfo_access first, then default to readonly.
* fhandler_termios.cc (tty_min::kill_pgrp): When getting list of pids to work
with, suggest opening with PID_MAP_RW.
* signal.cc (kill_pgrp): Ditto.
* sigproc.cc (sig_send): Perform a write check on todo prior to attempting to
increment it. Return EACCES if we can't write to it.
Diffstat (limited to 'winsup/cygwin/fhandler_termios.cc')
-rw-r--r-- | winsup/cygwin/fhandler_termios.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_termios.cc b/winsup/cygwin/fhandler_termios.cc index 49dbb3378..1a2dd251c 100644 --- a/winsup/cygwin/fhandler_termios.cc +++ b/winsup/cygwin/fhandler_termios.cc @@ -19,6 +19,7 @@ details. */ #include "sigproc.h" #include "pinfo.h" #include "tty.h" +#include "sys/cygwin.h" /* Common functions shared by tty/console */ @@ -84,7 +85,7 @@ void tty_min::kill_pgrp (int sig) { int killself = 0; - winpids pids; + winpids pids ((DWORD) PID_MAP_RW); for (unsigned i = 0; i < pids.npids; i++) { _pinfo *p = pids[i]; |