diff options
author | Chris Robinson <[email protected]> | 2014-05-14 02:47:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-14 02:47:07 -0700 |
commit | 1d2504d12e996a4c1e8fe9785901db9a9e3b4d7c (patch) | |
tree | 51895ba97192cee1fccab44a838e4fa43d81a984 /common/rwlock.c | |
parent | 4454ae25c753388c529b937ae2ce0f47f06d16c4 (diff) |
Make RefCount a non-integer type
It should only be accessed through the appropriate functions to ensure proper
atomicity.
Diffstat (limited to 'common/rwlock.c')
-rw-r--r-- | common/rwlock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rwlock.c b/common/rwlock.c index b967db0a..ff7aa418 100644 --- a/common/rwlock.c +++ b/common/rwlock.c @@ -24,8 +24,8 @@ static void Unlock(volatile int *l) void RWLockInit(RWLock *lock) { - lock->read_count = 0; - lock->write_count = 0; + InitRef(&lock->read_count, 0); + InitRef(&lock->write_count, 0); lock->read_lock = false; lock->read_entry_lock = false; lock->write_lock = false; |