ck_rwlock: Forgot to add acquire on operation success.

ck_pring
Samy Al Bahra 12 years ago
parent bdadd7bf6b
commit 038b3d816d

@ -113,6 +113,7 @@ ck_rwlock_read_trylock(ck_rwlock_t *rw)
return false; return false;
leave: leave:
ck_pr_fence_load();
return true; return true;
} }
@ -131,6 +132,7 @@ ck_rwlock_read_lock(ck_rwlock_t *rw)
ck_pr_dec_uint(&rw->n_readers); ck_pr_dec_uint(&rw->n_readers);
} }
ck_pr_fence_load();
return; return;
} }

Loading…
Cancel
Save