Invert test (the mask contains BLOCKED signals)
[bertos.git] / cfg / os.h
index e1535dd49410bc04f7d21ef7f6c60889219eff20..924daadea7f9c79e6e253b6d7fb00207186eebaf 100644 (file)
--- a/cfg/os.h
+++ b/cfg/os.h
        ({ \
                sigset_t sigs; \
                sigprocmask(SIG_SETMASK, NULL, &sigs); \
-               sigismember(&sigs, SIGALRM) ? true : false; \
+               sigismember(&sigs, SIGALRM) ? false : true; \
         })
 
 #else