From 531c0d8e6b3d0ad8ff4ad8278a1030785deb3d77 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 26 Jul 2014 03:00:49 -0700 Subject: Explicitly pass the address of atomics and parameters that can be modified --- common/rwlock.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'common') diff --git a/common/rwlock.c b/common/rwlock.c index 0b185c9b..d7a813df 100644 --- a/common/rwlock.c +++ b/common/rwlock.c @@ -11,19 +11,19 @@ /* A simple spinlock. Yield the thread while the given integer is set by * another. Could probably be improved... */ #define LOCK(l) do { \ - while(ATOMIC_EXCHANGE(int, (l), true) == true) \ + while(ATOMIC_EXCHANGE(int, &(l), true) == true) \ althrd_yield(); \ } while(0) -#define UNLOCK(l) ATOMIC_STORE(l, false) +#define UNLOCK(l) ATOMIC_STORE(&(l), false) void RWLockInit(RWLock *lock) { InitRef(&lock->read_count, 0); InitRef(&lock->write_count, 0); - ATOMIC_STORE_UNSAFE(lock->read_lock, false); - ATOMIC_STORE_UNSAFE(lock->read_entry_lock, false); - ATOMIC_STORE_UNSAFE(lock->write_lock, false); + ATOMIC_STORE_UNSAFE(&lock->read_lock, false); + ATOMIC_STORE_UNSAFE(&lock->read_entry_lock, false); + ATOMIC_STORE_UNSAFE(&lock->write_lock, false); } void ReadLock(RWLock *lock) -- cgit v1.2.3