diff options
author | Christopher Faylor <me@cgf.cx> | 2005-02-26 20:50:25 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-02-26 20:50:25 +0000 |
commit | 1a9a235a5af29c55f5fe84745b595f0d247f888e (patch) | |
tree | 23daad2557637028036061eeba3652115b924b61 /winsup/cygwin/sigproc.h | |
parent | 92a7e06eb8c5f521079d9e799bfa34f479bc61ba (diff) | |
download | cygnal-1a9a235a5af29c55f5fe84745b595f0d247f888e.tar.gz cygnal-1a9a235a5af29c55f5fe84745b595f0d247f888e.tar.bz2 cygnal-1a9a235a5af29c55f5fe84745b595f0d247f888e.zip |
* debug.cc (delete_handle): Report on handle value in debugging output.
* pinfo.h (_pinfo::exists): Declare "new" function.
(_pinfo::kill): Ditto.
* fhandler_termios.cc (tty_min::kill_pgrp): Use _pinfo::exists rather than
proc_exists.
* pinfo.cc (pinfo::init): Ditto. Don't do a low_priority_sleep(0) when looping
to find exec'ed procinfo.
(pinfo::release): Be more careful about unmapping and closing.
* signal.cc (_pinfo::kill): Rename from kill_worker. Accommodate entry into
_pinfo class.
(kill0): Use _pinfo::kill rather than kill_worker.
(kill_pgrp): Ditto. Use _pinfo::exists rather than proc_exists.
* sigproc.cc (_pinfo::exists): Rename from proc_exists.
(pid_exists): Use _pinfo::exists rather than proc_exists.
(remove_proc): Ditto.
* sigproc.h (proc_exists): Delete declaration.
Diffstat (limited to 'winsup/cygwin/sigproc.h')
-rw-r--r-- | winsup/cygwin/sigproc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.h b/winsup/cygwin/sigproc.h index b53e250d0..a4e8a7147 100644 --- a/winsup/cygwin/sigproc.h +++ b/winsup/cygwin/sigproc.h @@ -73,7 +73,6 @@ class _pinfo; void __stdcall proc_terminate (); void __stdcall sigproc_init (); void __stdcall sigproc_terminate (); -bool __stdcall proc_exists (_pinfo *) __attribute__ ((regparm(1))); bool __stdcall pid_exists (pid_t) __attribute__ ((regparm(1))); int __stdcall sig_send (_pinfo *, siginfo_t&, class _cygtls *tls = NULL) __attribute__ ((regparm (3))); int __stdcall sig_send (_pinfo *, int) __attribute__ ((regparm (2))); |