X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu.c;h=b4346551b2403127da9822f08223f875c991e4ca;hp=be6d4bdfc55b32d624011280c972d6f2772f2853;hb=541d828d3101283ccdb1e25fa5a885e1d1743c1a;hpb=b6df4e94f2624d5adb881e0b49f2bd61b24cf882 diff --git a/urcu.c b/urcu.c index be6d4bd..b434655 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() + #include "urcu-call-rcu-impl.h" #include "urcu-defer-impl.h"