summaryrefslogtreecommitdiffstats
path: root/usr.bin/doscmd/signal.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/doscmd/signal.c')
-rw-r--r--usr.bin/doscmd/signal.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/doscmd/signal.c b/usr.bin/doscmd/signal.c
index 434f00f..c79a24a 100644
--- a/usr.bin/doscmd/signal.c
+++ b/usr.bin/doscmd/signal.c
@@ -29,7 +29,7 @@
*
* BSDI signal.c,v 2.2 1996/04/08 19:33:06 bostic Exp
*
- * $Id: signal.c,v 1.5 1997/03/18 02:36:56 msmith Exp $
+ * $Id: signal.c,v 1.1 1997/08/09 01:42:55 dyson Exp $
*/
#include "doscmd.h"
@@ -104,7 +104,9 @@ setsignal(int s, void (*h)(struct sigframe *))
handler[s] = h;
sa.sa_handler = (__sighandler_t *)generichandler;
- sa.sa_mask = sigmask(SIGIO) | sigmask(SIGALRM);
+ sigemptyset(&sa.sa_mask);
+ sigaddset(&sa.sa_mask, SIGIO);
+ sigaddset(&sa.sa_mask, SIGALRM);
sa.sa_flags = SA_ONSTACK;
sigaction(s, &sa, NULL);
OpenPOWER on IntegriCloud