Build system: use SPDX identifiers
[urcu.git] / include / urcu / urcu-mb.h
CommitLineData
4477a870
MD
1#ifndef _URCU_MB_H
2#define _URCU_MB_H
27b012e2 3
b257a10b 4/*
4477a870 5 * urcu-mb.h
b257a10b
MD
6 *
7 * Userspace RCU header
8 *
6982d6d7 9 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
af02d47e 10 * Copyright (c) 2009 Paul E. McKenney, IBM Corporation.
5e7e64b9 11 *
121a5d44 12 * LGPL-compatible code should include this header with :
5e7e64b9 13 *
121a5d44
MD
14 * #define _LGPL_SOURCE
15 * #include <urcu.h>
16 *
af02d47e
MD
17 * This library is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU Lesser General Public
19 * License as published by the Free Software Foundation; either
20 * version 2.1 of the License, or (at your option) any later version.
21 *
22 * This library is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 * Lesser General Public License for more details.
26 *
27 * You should have received a copy of the GNU Lesser General Public
28 * License along with this library; if not, write to the Free Software
29 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
54843abc
PM
30 *
31 * IBM's contributions to this file may be relicensed under LGPLv2 or later.
b257a10b
MD
32 */
33
1430ee0b 34#include <stdlib.h>
69a757c9 35#include <pthread.h>
111bda8f 36#include <stdbool.h>
1430ee0b 37
7e30abe3 38/*
6cd23d47 39 * See urcu/pointer.h and urcu/static/pointer.h for pointer
af7c2dbe 40 * publication headers.
7e30abe3 41 */
6cd23d47 42#include <urcu/pointer.h>
111bda8f 43#include <urcu/urcu-poll.h>
7e30abe3 44
36bc70a8
MD
45#ifdef __cplusplus
46extern "C" {
67ecffc0 47#endif
36bc70a8 48
4477a870 49#include <urcu/map/urcu-mb.h>
5e77fc1f 50
92b752ee
MD
51/*
52 * Important !
53 *
54 * Each thread containing read-side critical sections must be registered
5e77fc1f
PM
55 * with rcu_register_thread_mb() before calling rcu_read_lock_mb().
56 * rcu_unregister_thread_mb() should be called before the thread exits.
92b752ee
MD
57 */
58
121a5d44 59#ifdef _LGPL_SOURCE
b0d5e790 60
4477a870 61#include <urcu/static/urcu-mb.h>
3a86deba
MD
62
63/*
121a5d44
MD
64 * Mappings for static use of the userspace RCU library.
65 * Should only be used in LGPL-compatible code.
3a86deba 66 */
3a86deba 67
7e30abe3
MD
68/*
69 * rcu_read_lock()
70 * rcu_read_unlock()
71 *
72 * Mark the beginning and end of a read-side critical section.
73 * DON'T FORGET TO USE RCU_REGISTER/UNREGISTER_THREAD() FOR EACH THREAD WITH
74 * READ-SIDE CRITICAL SECTION.
75 */
4477a870
MD
76#define urcu_mb_read_lock _urcu_mb_read_lock
77#define urcu_mb_read_unlock _urcu_mb_read_unlock
78#define urcu_mb_read_ongoing _urcu_mb_read_ongoing
41718ff9 79
121a5d44 80#else /* !_LGPL_SOURCE */
27b012e2 81
40e140c9 82/*
121a5d44 83 * library wrappers to be used by non-LGPL compatible source code.
6cd23d47 84 * See LGPL-only urcu/static/pointer.h for documentation.
40e140c9 85 */
cf380c2f 86
4477a870
MD
87extern void urcu_mb_read_lock(void);
88extern void urcu_mb_read_unlock(void);
89extern int urcu_mb_read_ongoing(void);
cf380c2f 90
121a5d44 91#endif /* !_LGPL_SOURCE */
f4a486ac 92
4477a870 93extern void urcu_mb_synchronize_rcu(void);
27b012e2 94
111bda8f
MD
95/*
96 * RCU grace period polling API.
97 */
98extern struct urcu_gp_poll_state urcu_mb_start_poll_synchronize_rcu(void);
99extern bool urcu_mb_poll_state_synchronize_rcu(struct urcu_gp_poll_state state);
100
27b012e2
MD
101/*
102 * Reader thread registration.
103 */
4477a870
MD
104extern void urcu_mb_register_thread(void);
105extern void urcu_mb_unregister_thread(void);
27b012e2 106
e95f4e7f 107/*
02be5561 108 * Explicit rcu initialization, for "early" use within library constructors.
e95f4e7f 109 */
4477a870 110extern void urcu_mb_init(void);
e95f4e7f 111
51b03c6f
MD
112/*
113 * Q.S. reporting are no-ops for these URCU flavors.
114 */
4477a870 115static inline void urcu_mb_quiescent_state(void)
51b03c6f
MD
116{
117}
118
4477a870 119static inline void urcu_mb_thread_offline(void)
51b03c6f
MD
120{
121}
122
4477a870 123static inline void urcu_mb_thread_online(void)
51b03c6f
MD
124{
125}
126
67ecffc0 127#ifdef __cplusplus
36bc70a8
MD
128}
129#endif
130
6cd23d47
MD
131#include <urcu/call-rcu.h>
132#include <urcu/defer.h>
133#include <urcu/flavor.h>
5e77fc1f 134
4477a870
MD
135#ifndef URCU_API_MAP
136#include <urcu/map/clear.h>
137#endif
138
139#endif /* _URCU_MB_H */
This page took 0.055899 seconds and 4 git commands to generate.