X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=urcu.c;h=39486296c19036561d7862748274223513172545;hb=7d5dc80de0522da1b8bc3656646ea39c15481594;hp=be6d4bdfc55b32d624011280c972d6f2772f2853;hpb=3a71751ee010b48e1a1fa7081617ec6f82d5c0ba;p=urcu.git diff --git a/urcu.c b/urcu.c index be6d4bd..3948629 100644 --- a/urcu.c +++ b/urcu.c @@ -25,6 +25,7 @@ #define _BSD_SOURCE #define _GNU_SOURCE +#define _LGPL_SOURCE #include #include #include @@ -35,11 +36,15 @@ #include #include +#include "urcu/wfqueue.h" #include "urcu/map/urcu.h" - #include "urcu/static/urcu.h" +#include "urcu-pointer.h" + /* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */ +#undef _LGPL_SOURCE #include "urcu.h" +#define _LGPL_SOURCE /* * If a reader is really non-cooperative and refuses to commit its @@ -139,7 +144,7 @@ static void mutex_unlock(pthread_mutex_t *mutex) #ifdef RCU_MEMBARRIER static void smp_mb_master(int group) { - if (likely(has_sys_membarrier)) + if (caa_likely(has_sys_membarrier)) membarrier(MEMBARRIER_EXPEDITED); else cmm_smp_mb(); @@ -447,5 +452,7 @@ void rcu_exit(void) #endif /* #ifdef RCU_SIGNAL */ +DEFINE_RCU_FLAVOR(rcu_flavor); + #include "urcu-call-rcu-impl.h" #include "urcu-defer-impl.h"