Use new header locations for includes from urcu code
[urcu.git] / include / urcu / urcu-qsbr.h
CommitLineData
420e5b92
MD
1#ifndef _URCU_QSBR_H
2#define _URCU_QSBR_H
3
4/*
7ac06cef 5 * urcu-qsbr.h
420e5b92 6 *
7ac06cef 7 * Userspace RCU QSBR header.
420e5b92 8 *
7ac06cef 9 * LGPL-compatible code should include this header with :
420e5b92 10 *
7ac06cef
MD
11 * #define _LGPL_SOURCE
12 * #include <urcu.h>
420e5b92
MD
13 *
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
18 *
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
23 *
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 *
28 * IBM's contributions to this file may be relicensed under LGPLv2 or later.
29 */
30
31#include <stdlib.h>
32#include <pthread.h>
420e5b92 33
7e30abe3 34/*
6cd23d47 35 * See urcu/pointer.h and urcu/static/pointer.h for pointer
af7c2dbe 36 * publication headers.
7e30abe3 37 */
6cd23d47 38#include <urcu/pointer.h>
7e30abe3 39
36bc70a8
MD
40#ifdef __cplusplus
41extern "C" {
67ecffc0 42#endif
36bc70a8 43
ee6fabe1 44#include <urcu/map/urcu-qsbr.h>
5e77fc1f 45
14740b19
MD
46#ifdef RCU_DEBUG /* For backward compatibility */
47#define DEBUG_RCU
48#endif
49
420e5b92 50/*
7ac06cef 51 * Important !
420e5b92 52 *
7ac06cef
MD
53 * Each thread containing read-side critical sections must be registered
54 * with rcu_register_thread() before calling rcu_read_lock().
55 * rcu_unregister_thread() should be called before the thread exits.
420e5b92
MD
56 */
57
7ac06cef 58#ifdef _LGPL_SOURCE
420e5b92 59
af7c2dbe 60#include <urcu/static/urcu-qsbr.h>
420e5b92
MD
61
62/*
7ac06cef
MD
63 * Mappings for static use of the userspace RCU library.
64 * Should only be used in LGPL-compatible code.
420e5b92 65 */
420e5b92 66
7e30abe3
MD
67/*
68 * rcu_read_lock()
69 * rcu_read_unlock()
70 *
71 * Mark the beginning and end of a read-side critical section.
5e77fc1f
PM
72 * DON'T FORGET TO USE rcu_register_thread/rcu_unregister_thread()
73 * FOR EACH THREAD WITH READ-SIDE CRITICAL SECTION.
7e30abe3 74 */
4477a870
MD
75#define urcu_qsbr_read_lock _urcu_qsbr_read_lock
76#define urcu_qsbr_read_unlock _urcu_qsbr_read_unlock
77#define urcu_qsbr_read_ongoing _urcu_qsbr_read_ongoing
420e5b92 78
4477a870
MD
79#define urcu_qsbr_quiescent_state _urcu_qsbr_quiescent_state
80#define urcu_qsbr_thread_offline _urcu_qsbr_thread_offline
81#define urcu_qsbr_thread_online _urcu_qsbr_thread_online
420e5b92 82
7ac06cef 83#else /* !_LGPL_SOURCE */
420e5b92 84
420e5b92 85/*
7ac06cef 86 * library wrappers to be used by non-LGPL compatible source code.
420e5b92 87 */
420e5b92 88
727f819d
MD
89/*
90 * QSBR read lock/unlock are guaranteed to be no-ops. Therefore, we expose them
91 * in the LGPL header for any code to use. However, the debug version is not
92 * nops and may contain sanity checks. To activate it, applications must be
d4e640c0
JR
93 * recompiled with -DDEBUG_RCU (even non-LGPL/GPL applications), or
94 * compiled against a urcu/config.h that has CONFIG_RCU_DEBUG defined.
95 * This is the best trade-off between license/performance/code
96 * triviality and library debugging & tracing features we could come up
97 * with.
727f819d
MD
98 */
99
d4e640c0 100#if (!defined(BUILD_QSBR_LIB) && !defined(DEBUG_RCU) && !defined(CONFIG_RCU_DEBUG))
727f819d 101
4477a870 102static inline void urcu_qsbr_read_lock(void)
727f819d
MD
103{
104}
105
4477a870 106static inline void urcu_qsbr_read_unlock(void)
727f819d
MD
107{
108}
109
d4e640c0 110#else /* #if (!defined(BUILD_QSBR_LIB) && !defined(DEBUG_RCU) && !defined(CONFIG_RCU_DEBUG)) */
727f819d 111
4477a870
MD
112extern void urcu_qsbr_read_lock(void);
113extern void urcu_qsbr_read_unlock(void);
420e5b92 114
d4e640c0 115#endif /* #else #if (!defined(BUILD_QSBR_LIB) && !defined(DEBUG_RCU) && !defined(CONFIG_RCU_DEBUG)) */
727f819d 116
4477a870
MD
117extern int urcu_qsbr_read_ongoing(void);
118extern void urcu_qsbr_quiescent_state(void);
119extern void urcu_qsbr_thread_offline(void);
120extern void urcu_qsbr_thread_online(void);
420e5b92 121
7ac06cef 122#endif /* !_LGPL_SOURCE */
420e5b92 123
4477a870 124extern void urcu_qsbr_synchronize_rcu(void);
420e5b92
MD
125
126/*
127 * Reader thread registration.
128 */
4477a870
MD
129extern void urcu_qsbr_register_thread(void);
130extern void urcu_qsbr_unregister_thread(void);
420e5b92 131
67ecffc0 132#ifdef __cplusplus
36bc70a8
MD
133}
134#endif
135
6cd23d47
MD
136#include <urcu/call-rcu.h>
137#include <urcu/defer.h>
138#include <urcu/flavor.h>
5e77fc1f 139
4477a870
MD
140#ifndef URCU_API_MAP
141#include <urcu/map/clear.h>
142#endif
143
420e5b92 144#endif /* _URCU_QSBR_H */
This page took 0.045995 seconds and 4 git commands to generate.