From 32482f61da7650ff10741bd5aedd66bbc3ea165b Mon Sep 17 00:00:00 2001 From: Jens Gustedt Date: Wed, 3 Jan 2018 14:17:12 +0100 Subject: revise the definition of multiple basic locks in the code In all cases this is just a change from two volatile int to one. --- src/thread/synccall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/thread/synccall.c') diff --git a/src/thread/synccall.c b/src/thread/synccall.c index f6813576..ba2f258e 100644 --- a/src/thread/synccall.c +++ b/src/thread/synccall.c @@ -14,7 +14,7 @@ static struct chain { sem_t target_sem, caller_sem; } *volatile head; -static volatile int synccall_lock[2]; +static volatile int synccall_lock[1]; static volatile int target_tid; static void (*callback)(void *), *context; static volatile int dummy = 0; -- cgit v1.2.1