# HG changeset patch # User Andreas Schwab # Date 1223328464 0 # Node ID 0835efd6ac19cca3ae240a15cd04ae34cb026934 # Parent dae1f13ca4239b91a97432e08920b64bf7c3b02a (sys_signal): Always set SA_RESTART when noninteractively. diff -r dae1f13ca423 -r 0835efd6ac19 src/ChangeLog --- a/src/ChangeLog Mon Oct 06 16:17:24 2008 +0000 +++ b/src/ChangeLog Mon Oct 06 21:27:44 2008 +0000 @@ -1,3 +1,8 @@ +2008-10-06 Andreas Schwab + + * sysdep.c (sys_signal): Always set SA_RESTART when + noninteractively. + 2008-10-06 Chong Yidong * emacs.c (Vbefore_init_time, Vafter_init_time): Moved from diff -r dae1f13ca423 -r 0835efd6ac19 src/sysdep.c --- a/src/sysdep.c Mon Oct 06 16:17:24 2008 +0000 +++ b/src/sysdep.c Mon Oct 06 21:27:44 2008 +0000 @@ -2124,7 +2124,8 @@ struct sigaction new_action, old_action; sigemptyset (&new_action.sa_mask); new_action.sa_handler = action; -#if defined (SA_RESTART) && ! defined (BROKEN_SA_RESTART) && !defined(SYNC_INPUT) + new_action.sa_flags = 0; +#if defined (SA_RESTART) /* Emacs mostly works better with restartable system services. If this flag exists, we probably want to turn it on here. However, on some systems this resets the timeout of `select' @@ -2134,9 +2135,10 @@ When SYNC_INPUT is set, we don't want SA_RESTART because we need to poll for pending input so we need long-running syscalls to be interrupted after a signal that sets the interrupt_input_pending flag. */ - new_action.sa_flags = SA_RESTART; -#else - new_action.sa_flags = 0; +# if defined (BROKEN_SA_RESTART) || defined(SYNC_INPUT) + if (noninteractive) +# endif + new_action.sa_flags = SA_RESTART; #endif sigaction (signal_number, &new_action, &old_action); return (old_action.sa_handler);