API prefix standardization: urcu_ -> rcu_
[urcu.git] / tests / urcutorture.c
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 TORTURE_URCU_SIGNAL
12 #include <urcu.h>
13 #endif
14 #ifdef TORTURE_URCU_MB
15 #define RCU_MB
16 #include <urcu.h>
17 #endif
18 #ifdef TORTURE_QSBR
19 #include <urcu-qsbr.h>
20 #endif
21 #ifdef TORTURE_URCU_BP
22 #include <urcu-bp.h>
23 #endif
24
25 #include <urcu/uatomic_arch.h>
26 #include <urcu/rculist.h>
27 #include "rcutorture.h"
This page took 0.028768 seconds and 4 git commands to generate.