aboutsummaryrefslogtreecommitdiffstats
path: root/src/atimer.c
diff options
context:
space:
mode:
authorGerd Moellmann2001-10-08 09:42:24 +0000
committerGerd Moellmann2001-10-08 09:42:24 +0000
commit3ecd9cc373e093b541ec10283ba83fe6dae58c14 (patch)
tree9c06c9d77f70e843bbc946ba3ab926b495a814ad /src/atimer.c
parent402c9a512185f6748803868c1c0ed503227d3301 (diff)
downloademacs-3ecd9cc373e093b541ec10283ba83fe6dae58c14.tar.gz
emacs-3ecd9cc373e093b541ec10283ba83fe6dae58c14.zip
(alarm_signal_handler) [USG && !POSIX_SIGNALS]:
Remove code setting signal handler.
Diffstat (limited to 'src/atimer.c')
-rw-r--r--src/atimer.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/atimer.c b/src/atimer.c
index 6bf685cec3c..492aa4ec04e 100644
--- a/src/atimer.c
+++ b/src/atimer.c
@@ -391,12 +391,6 @@ alarm_signal_handler (signo)
391 EMACS_GET_TIME (now); 391 EMACS_GET_TIME (now);
392 } 392 }
393 393
394#if defined (USG) && !defined (POSIX_SIGNALS)
395 /* USG systems forget handlers when they are used;
396 must reestablish each time. */
397 signal (SIGALRM, alarm_signal_handler);
398#endif /* USG */
399
400 set_alarm (); 394 set_alarm ();
401} 395}
402 396