diff options
author | Christopher Faylor <me@cgf.cx> | 2005-02-27 04:30:08 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-02-27 04:30:08 +0000 |
commit | d61925786a19f2ee513c969ad7cb421a7db762b7 (patch) | |
tree | 3ca1430f75e6982f822d708ca5f469f3a4950f73 /winsup/cygwin/pinfo.cc | |
parent | 78d9eaa5eac0e037206b481c4c5512936d53524d (diff) | |
download | cygnal-d61925786a19f2ee513c969ad7cb421a7db762b7.tar.gz cygnal-d61925786a19f2ee513c969ad7cb421a7db762b7.tar.bz2 cygnal-d61925786a19f2ee513c969ad7cb421a7db762b7.zip |
* sigproc.cc (_pinfo::set_ctty): Move function
* pinfo.cc (_pinfo::set_ctty): to here.
* fhandler_mem.cc (fhandler_dev_mem::fstat): Don't fill out structure if this
is an on-disk device rather than an "auto" device.
* fhandler_raw.cc (fhandler_dev_raw::fstat): Ditto.
* path.cc (normalize_posix_path): Don't treat a standalone '//' as introducing
a UNC path.
(normalize_win32_path): Ditto.
Diffstat (limited to 'winsup/cygwin/pinfo.cc')
-rw-r--r-- | winsup/cygwin/pinfo.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc index 671c3c4e3..b77b4c0d2 100644 --- a/winsup/cygwin/pinfo.cc +++ b/winsup/cygwin/pinfo.cc @@ -373,6 +373,14 @@ _pinfo::set_ctty (tty_min *tc, int flags, fhandler_tty_slave *arch) } } +/* Test to determine if a process really exists and is processing signals. + */ +bool __stdcall +_pinfo::exists () +{ + return this && !(process_state & PID_EXITED); +} + bool _pinfo::alive () { |