summaryrefslogtreecommitdiff
path: root/lib-src/=timer.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-05-16 00:53:57 +0000
committerJim Blandy <jimb@redhat.com>1993-05-16 00:53:57 +0000
commit7ebb40cd40bda6f817812eea21b872db6e308adf (patch)
tree06985e199edca74ddeebcce7cab4b1d0a3536638 /lib-src/=timer.c
parent781a1b11441898cf3a7f8e46eecf12c36dd52b64 (diff)
downloademacs-7ebb40cd40bda6f817812eea21b872db6e308adf.tar.gz
* timer.c (notify): Don't call sighold or sigrelse; they're USG
only. We should really fix this later, but let's just make it compile for now.
Diffstat (limited to 'lib-src/=timer.c')
-rw-r--r--lib-src/=timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/=timer.c b/lib-src/=timer.c
index 2fa220e48a6..7a4ee3c571b 100644
--- a/lib-src/=timer.c
+++ b/lib-src/=timer.c
@@ -127,7 +127,7 @@ notify ()
/* If an alarm timer runs out while this function is executing,
it could get called recursively. This would be bad, because
it's not re-entrant. So we must try to suspend the signal. */
-#ifdef sigmask
+#if 0 /* This function isn't right for BSD. Fix it later. */
sighold(SIGIO);
#endif
@@ -162,7 +162,7 @@ notify ()
if (num_events > 0)
alarm (waitfor);
-#ifdef sigmask
+#if 0 /* This function isn't right for BSD. */
sigrelse(SIGIO);
#endif
}