From bfc9837d4f3d6da1ffabc47c2f8326d43f995caf Mon Sep 17 00:00:00 2001 From: Samy Al Bahra Date: Fri, 18 Apr 2014 15:36:04 -0400 Subject: [PATCH] ck_swlock: Whitespace change. --- include/ck_swlock.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/ck_swlock.h b/include/ck_swlock.h index de83999..06bd14a 100644 --- a/include/ck_swlock.h +++ b/include/ck_swlock.h @@ -91,7 +91,6 @@ ck_swlock_write_trylock(ck_swlock_t *rw) { ck_pr_store_32(&rw->writer, 1); - ck_pr_fence_atomic_load(); if (ck_pr_load_32(&rw->n_readers) != 0) { @@ -110,7 +109,6 @@ ck_swlock_write_lock(ck_swlock_t *rw) { ck_pr_store_32(&rw->writer, 1); - ck_pr_fence_atomic_load(); while (ck_pr_load_32(&rw->n_readers) != 0)