X-Git-Url: http://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=include%2Furcu%2Fstatic%2Furcu-common.h;fp=include%2Furcu%2Fstatic%2Furcu-common.h;h=d0fd06a3e221705ca14bbf820805658c65e1dda5;hp=50d1230981158b90eb12b87d6b4c1a9aa011b6b8;hb=601922a81d884e16ff404cee7534ede56fb87d0a;hpb=fcab075f67cf3e29e8556b4af1bbbfb210977ac2 diff --git a/include/urcu/static/urcu-common.h b/include/urcu/static/urcu-common.h index 50d1230..d0fd06a 100644 --- a/include/urcu/static/urcu-common.h +++ b/include/urcu/static/urcu-common.h @@ -20,6 +20,7 @@ #include #include +#include #include #include #include @@ -91,7 +92,8 @@ static inline void urcu_common_wake_up_gp(struct urcu_gp *gp) } static inline enum urcu_state urcu_common_reader_state(struct urcu_gp *gp, - unsigned long *ctr) + unsigned long *ctr, + cmm_annotate_t *group) { unsigned long v; @@ -99,7 +101,9 @@ static inline enum urcu_state urcu_common_reader_state(struct urcu_gp *gp, * Make sure both tests below are done on the same version of *value * to insure consistency. */ - v = CMM_LOAD_SHARED(*ctr); + v = uatomic_load(ctr, CMM_RELAXED); + cmm_annotate_group_mem_acquire(group, ctr); + if (!(v & URCU_GP_CTR_NEST_MASK)) return URCU_READER_INACTIVE; if (!((v ^ gp->ctr) & URCU_GP_CTR_PHASE))