blob: 2bb57c41ed416e1ecf0beb98c51c5bae0a4c6217 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- timer.c.orig 1995-12-22 12:08:21 UTC
+++ timer.c
@@ -85,7 +85,7 @@
sigprocmask(SIG_BLOCK, &temp, (maskp)); \
}
# define signal_release(maskp) sigprocmask(SIG_SETMASK, maskp, (MASK *)NULL)
-# define signal_pause(maskp) sigpause(*(maskp))
+# define signal_pause(maskp) sigsuspend(maskp)
#else
# ifdef __hpux /* hpux is a weird mixture of BSD & SYSV */
/* don't know if this is right */
|