diff options
author | Christopher Faylor <me@cgf.cx> | 2002-01-11 02:24:06 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-01-11 02:24:06 +0000 |
commit | 06486d9e55dc159c565bda7894e426033f4c9685 (patch) | |
tree | b62ad34c3ca0ec4a38551577b3755592670b7c38 /winsup/cygwin/sigproc.h | |
parent | bb5225c236040065b2cefb6b143de95970b0313a (diff) | |
download | newlib-06486d9e55dc159c565bda7894e426033f4c9685.zip newlib-06486d9e55dc159c565bda7894e426033f4c9685.tar.gz newlib-06486d9e55dc159c565bda7894e426033f4c9685.tar.bz2 |
* exceptions.cc (sig_handle): Accept a second argument indicating whether the
signal came from this process or not.
* sigproc.h: Reflect sig_handle arg change.
* signal.cc (kill_pgrp): Add sigframe info.
(abort): New function. Eliminates newlib function of same name.
* sigproc.cc (wait_sig): Pass "signal from this process" value as arg 2.
Diffstat (limited to 'winsup/cygwin/sigproc.h')
-rw-r--r-- | winsup/cygwin/sigproc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.h b/winsup/cygwin/sigproc.h index dc67b6b..41fee5f 100644 --- a/winsup/cygwin/sigproc.h +++ b/winsup/cygwin/sigproc.h @@ -98,7 +98,7 @@ BOOL __stdcall my_parent_is_alive (); extern "C" int __stdcall sig_dispatch_pending (int force = FALSE); extern "C" void __stdcall set_process_mask (sigset_t newmask); extern "C" void __stdcall reset_signal_arrived (); -int __stdcall sig_handle (int); +int __stdcall sig_handle (int, bool); void __stdcall sig_clear (int); void __stdcall sig_set_pending (int); int __stdcall handle_sigsuspend (sigset_t); |