Make bootstrap executable
[urcu.git] / 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
MD
34/*
35 * See urcu-pointer.h and urcu-pointer-static.h for pointer publication headers.
36 */
37#include <urcu-pointer.h>
38
420e5b92 39/*
7ac06cef 40 * Important !
420e5b92 41 *
7ac06cef
MD
42 * Each thread containing read-side critical sections must be registered
43 * with rcu_register_thread() before calling rcu_read_lock().
44 * rcu_unregister_thread() should be called before the thread exits.
420e5b92
MD
45 */
46
7ac06cef 47#ifdef _LGPL_SOURCE
420e5b92 48
7ac06cef 49#include <urcu-qsbr-static.h>
420e5b92
MD
50
51/*
7ac06cef
MD
52 * Mappings for static use of the userspace RCU library.
53 * Should only be used in LGPL-compatible code.
420e5b92 54 */
420e5b92 55
7e30abe3
MD
56/*
57 * rcu_read_lock()
58 * rcu_read_unlock()
59 *
60 * Mark the beginning and end of a read-side critical section.
61 * DON'T FORGET TO USE RCU_REGISTER/UNREGISTER_THREAD() FOR EACH THREAD WITH
62 * READ-SIDE CRITICAL SECTION.
63 */
64#define rcu_read_lock() _rcu_read_lock()
65#define rcu_read_unlock() _rcu_read_unlock()
420e5b92 66
7e30abe3
MD
67#define rcu_quiescent_state() _rcu_quiescent_state()
68#define rcu_thread_offline() _rcu_thread_offline()
69#define rcu_thread_online() _rcu_thread_online()
420e5b92 70
7ac06cef 71#else /* !_LGPL_SOURCE */
420e5b92 72
420e5b92 73/*
7ac06cef 74 * library wrappers to be used by non-LGPL compatible source code.
420e5b92 75 */
420e5b92 76
727f819d
MD
77/*
78 * QSBR read lock/unlock are guaranteed to be no-ops. Therefore, we expose them
79 * in the LGPL header for any code to use. However, the debug version is not
80 * nops and may contain sanity checks. To activate it, applications must be
81 * recompiled with -DURCU_DEBUG (even non-LGPL/GPL applications). This is the
82 * best trade-off between license/performance/code triviality and
83 * library debugging & tracing features we could come up with.
84 */
85
86#if (!defined(BUILD_QSBR_LIB) && defined(URCU_DEBUG))
87
88static inline void rcu_read_lock(void)
89{
90}
91
92static inline void rcu_read_lock(void)
93{
94}
95
96#else /* !URCU_DEBUG */
97
7ac06cef
MD
98extern void rcu_read_lock(void);
99extern void rcu_read_unlock(void);
420e5b92 100
727f819d
MD
101#endif /* !URCU_DEBUG */
102
7ac06cef
MD
103extern void rcu_quiescent_state(void);
104extern void rcu_thread_offline(void);
105extern void rcu_thread_online(void);
420e5b92 106
7ac06cef 107#endif /* !_LGPL_SOURCE */
420e5b92
MD
108
109extern void synchronize_rcu(void);
110
111/*
112 * Reader thread registration.
113 */
114extern void rcu_register_thread(void);
115extern void rcu_unregister_thread(void);
116
117#endif /* _URCU_QSBR_H */
This page took 0.027225 seconds and 4 git commands to generate.