diff options
author | Christopher Faylor <me@cgf.cx> | 2000-08-29 02:06:49 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-08-29 02:06:49 +0000 |
commit | d824bcf985a8a5fd96169135fd13a37729af4b16 (patch) | |
tree | 9e9cb02a7c42cf39bcd4daef1c418fb5da82bbc6 /winsup/cygwin/sigproc.h | |
parent | 1b38471e5ed5a618f316be3ada5c30ccc17f1e51 (diff) | |
download | cygnal-d824bcf985a8a5fd96169135fd13a37729af4b16.tar.gz cygnal-d824bcf985a8a5fd96169135fd13a37729af4b16.tar.bz2 cygnal-d824bcf985a8a5fd96169135fd13a37729af4b16.zip |
* signal.cc (_raise): New function.
* exceptions.cc (unused_sig_wrapper): Remove _raise.
* sigproc.h (class sigframe): Default frames to skip to zero or suffer from
exuberant optimization.
* fhandler_tty.cc (fhandler_tty::write): Set appropriate errno when WriteFile
to pipe fails.
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 9e1c3fb4d..9d3b68922 100644 --- a/winsup/cygwin/sigproc.h +++ b/winsup/cygwin/sigproc.h @@ -60,7 +60,7 @@ public: } sigframe () {st = NULL;} - sigframe (sigthread &t, int up = 1) + sigframe (sigthread &t, int up = 0) { if (!t.frame && t.id == GetCurrentThreadId ()) set (t, up); |