* exceptions.cc (sig_handle): Change so that default signals indicate success.

This commit is contained in:
Christopher Faylor 2003-08-22 17:01:53 +00:00
parent 01d699914d
commit 29cd21d03a
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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);