From 755c2da31880953298481b3747c2472f13bc00a1 Mon Sep 17 00:00:00 2001 From: bernie Date: Mon, 18 Feb 2008 16:03:53 +0000 Subject: [PATCH] Invert test (the mask contains BLOCKED signals) git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1136 38d2e660-2303-0410-9eaa-f027e97ec537 --- cfg/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg/os.h b/cfg/os.h index e1535dd4..924daade 100644 --- a/cfg/os.h +++ b/cfg/os.h @@ -111,7 +111,7 @@ ({ \ sigset_t sigs; \ sigprocmask(SIG_SETMASK, NULL, &sigs); \ - sigismember(&sigs, SIGALRM) ? true : false; \ + sigismember(&sigs, SIGALRM) ? false : true; \ }) #else -- 2.25.1