* exceptions.cc (sig_handle): Change so that default signals indicate success.
This commit is contained in:
parent
01d699914d
commit
29cd21d03a
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue