summaryrefslogtreecommitdiff
path: root/kern/llsync.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2016-12-09 01:41:06 +0100
committerRichard Braun <rbraun@sceen.net>2016-12-09 01:41:06 +0100
commit39c13b3b84b34e0938220126c8f147d2b0b6ac89 (patch)
tree92accef33f04f49a01765e00ec026b092ae0c8ca /kern/llsync.h
parent84c92cd2be8bc4aea6c14a186f79c2277f0fd4aa (diff)
Force brackets around one-line conditional statements
This change was done using astyle, with a few manual editing here and there.
Diffstat (limited to 'kern/llsync.h')
-rw-r--r--kern/llsync.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/kern/llsync.h b/kern/llsync.h
index 0d7438bb..57ad5589 100644
--- a/kern/llsync.h
+++ b/kern/llsync.h
@@ -107,8 +107,9 @@ llsync_read_enter(void)
in_read_cs = thread_llsync_in_read_cs();
thread_llsync_read_inc();
- if (!in_read_cs)
+ if (!in_read_cs) {
thread_preempt_disable();
+ }
}
static inline void
@@ -116,8 +117,9 @@ llsync_read_exit(void)
{
thread_llsync_read_dec();
- if (!thread_llsync_in_read_cs())
+ if (!thread_llsync_in_read_cs()) {
thread_preempt_enable();
+ }
}
/*