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 | |
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.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/exceptions.cc | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 87921e928..3fed94d14 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2003-08-22 Christopher Faylor <cgf@redhat.com> + + * exceptions.cc (sig_handle): Change so that default signals indicate + success. + 2003-08-21 Christopher Faylor <cgf@redhat.com> * sigproc.cc (wait_sig): Remove redundant test in do/while. 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); |