Map symbols to allow multiple RCU flavors to be used in one binary
[urcu.git] / tests / urcutorture.c
... / ...
CommitLineData
1#include <string.h>
2#include <sys/time.h>
3#include <poll.h>
4#include <unistd.h>
5#include <stdlib.h>
6#include <errno.h>
7#include <urcu/arch.h>
8#include "api.h"
9#define _LGPL_SOURCE
10
11#ifdef RCU_MEMBARRIER
12#include <urcu.h>
13#endif
14#ifdef RCU_SIGNAL
15#include <urcu.h>
16#endif
17#ifdef RCU_MB
18#include <urcu.h>
19#endif
20#ifdef RCU_QSBR
21#include <urcu-qsbr.h>
22#endif
23#ifdef RCU_BP
24#include <urcu-bp.h>
25#endif
26
27#include <urcu/uatomic_arch.h>
28#include <urcu/rculist.h>
29#include "rcutorture.h"
This page took 0.021803 seconds and 4 git commands to generate.