exceptions.cc (sig_handle): Set default action for SIGURG to SIG_IGN.
This commit is contained in:
parent
2edba2368a
commit
fcb76c5dcb
|
@ -1,3 +1,7 @@
|
||||||
|
2001-01-05 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
exceptions.cc (sig_handle): Set default action for SIGURG to SIG_IGN.
|
||||||
|
|
||||||
2001-01-05 Corinna Vinschen <corinna@vinschen.de>
|
2001-01-05 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* dtable.cc (dtable::init_std_file_from_handle): Don't treat NULL
|
* dtable.cc (dtable::init_std_file_from_handle): Don't treat NULL
|
||||||
|
|
|
@ -996,7 +996,8 @@ sig_handle (int sig)
|
||||||
|
|
||||||
if (handler == (void *) SIG_DFL)
|
if (handler == (void *) SIG_DFL)
|
||||||
{
|
{
|
||||||
if (sig == SIGCHLD || sig == SIGIO || sig == SIGCONT || sig == SIGWINCH)
|
if (sig == SIGCHLD || sig == SIGIO || sig == SIGCONT || sig == SIGWINCH
|
||||||
|
|| sig == SIGURG)
|
||||||
{
|
{
|
||||||
sigproc_printf ("default signal %d ignored", sig);
|
sigproc_printf ("default signal %d ignored", sig);
|
||||||
goto done;
|
goto done;
|
||||||
|
|
Loading…
Reference in New Issue