exceptions.cc (sig_handle): Set default action for SIGURG to SIG_IGN.

This commit is contained in:
Corinna Vinschen 2002-01-05 22:25:34 +00:00
parent 2edba2368a
commit fcb76c5dcb
2 changed files with 6 additions and 1 deletions

View File

@ -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>
* dtable.cc (dtable::init_std_file_from_handle): Don't treat NULL

View File

@ -996,7 +996,8 @@ sig_handle (int sig)
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);
goto done;