diff options
author | Christopher Faylor <me@cgf.cx> | 2003-08-22 17:01:53 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-08-22 17:01:53 +0000 |
commit | 29cd21d03ad15cedef5c9d1e9770b8491bf9dfc4 (patch) | |
tree | bfe5bc3a9eb5cfe9f5154ebadace89225bc04063 /winsup/cygwin/exceptions.cc | |
parent | 01d699914d19eb64222f5eb0364071f18a1d77d3 (diff) | |
download | cygnal-29cd21d03ad15cedef5c9d1e9770b8491bf9dfc4.tar.gz cygnal-29cd21d03ad15cedef5c9d1e9770b8491bf9dfc4.tar.bz2 cygnal-29cd21d03ad15cedef5c9d1e9770b8491bf9dfc4.zip |
* exceptions.cc (sig_handle): Change so that default signals indicate success.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index cff5719cf..e99751714 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -992,7 +992,7 @@ set_process_mask (sigset_t newmask) int __stdcall sig_handle (int sig) { - int rc = 0; + int rc = 1; sigproc_printf ("signal %d", sig); |