From 15da0d232377a109826e6d8dcd9dab9e1ccabfc1 Mon Sep 17 00:00:00 2001 From: bdemsky Date: Thu, 31 Aug 2006 23:47:27 +0000 Subject: [PATCH] changes --- Robust/src/Runtime/runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Robust/src/Runtime/runtime.c b/Robust/src/Runtime/runtime.c index 65c808d2..61016094 100644 --- a/Robust/src/Runtime/runtime.c +++ b/Robust/src/Runtime/runtime.c @@ -172,7 +172,7 @@ void executetasks() { struct sigaction sig; sig.sa_sigaction=&myhandler; sig.sa_flags=SA_SIGINFO; - sig.sa_mask=0; + sigemptyset(&sig.sa_mask); /* Catch bus errors, segmentation faults, and floating point exceptions*/ sigaction(SIGBUS,&sig,0); -- 2.34.1