X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=urcu-qsbr.c;h=c0e643dab54f460b59e3646ade4af850fd9d05fb;hb=f0f7dbdd9ba9bff3860d8aea63a3e01b158351de;hp=4da10d6121e3d6518315e601c40ced1ec284875b;hpb=b6953cd76fe3068c601059879924a6afca76b10f;p=userspace-rcu.git diff --git a/urcu-qsbr.c b/urcu-qsbr.c index 4da10d6..c0e643d 100644 --- a/urcu-qsbr.c +++ b/urcu-qsbr.c @@ -42,20 +42,20 @@ pthread_mutex_t urcu_mutex = PTHREAD_MUTEX_INITIALIZER; /* * Global grace period counter. */ -long urcu_gp_ctr = 0; +unsigned long urcu_gp_ctr = 1; /* * Written to only by each individual reader. Read by both the reader and the * writers. */ -long __thread rcu_reader_qs_gp; +unsigned long __thread rcu_reader_qs_gp; /* Thread IDs of registered readers */ #define INIT_NUM_THREADS 4 struct reader_registry { pthread_t tid; - long *rcu_reader_qs_gp; + unsigned long *rcu_reader_qs_gp; }; #ifdef DEBUG_YIELD @@ -139,27 +139,27 @@ static void wait_for_quiescent_state(void) void synchronize_rcu(void) { - int was_online; + unsigned long was_online; - was_online = rcu_reader_qs_gp & 1; + was_online = rcu_reader_qs_gp; /* * Mark the writer thread offline to make sure we don't wait for * our own quiescent state. This allows using synchronize_rcu() in * threads registered as readers. */ + smp_mb(); if (was_online) - _rcu_thread_offline(); + STORE_SHARED(rcu_reader_qs_gp, 0); - smp_mb(); internal_urcu_lock(); STORE_SHARED(urcu_gp_ctr, urcu_gp_ctr + 2); wait_for_quiescent_state(); internal_urcu_unlock(); - smp_mb(); if (was_online) - _rcu_thread_online(); + _STORE_SHARED(rcu_reader_qs_gp, LOAD_SHARED(urcu_gp_ctr)); + smp_mb(); } /*