projects
/
bertos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b5df30
)
Invert test (the mask contains BLOCKED signals)
author
bernie
<bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 18 Feb 2008 16:03:53 +0000
(16:03 +0000)
committer
bernie
<bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 18 Feb 2008 16:03:53 +0000
(16:03 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1136
38d2e660
-2303-0410-9eaa-
f027e97ec537
cfg/os.h
patch
|
blob
|
history
diff --git
a/cfg/os.h
b/cfg/os.h
index e1535dd49410bc04f7d21ef7f6c60889219eff20..924daadea7f9c79e6e253b6d7fb00207186eebaf 100644
(file)
--- a/
cfg/os.h
+++ b/
cfg/os.h
@@
-111,7
+111,7
@@
({ \
sigset_t sigs; \
sigprocmask(SIG_SETMASK, NULL, &sigs); \
- sigismember(&sigs, SIGALRM) ?
true : fals
e; \
+ sigismember(&sigs, SIGALRM) ?
false : tru
e; \
})
#else