Fix: call rcu should call internal RCU API
[userspace-rcu.git] / urcu.h
CommitLineData
27b012e2
MD
1#ifndef _URCU_H
2#define _URCU_H
3
b257a10b
MD
4/*
5 * urcu.h
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>
791151d0
MD
36#include <urcu/tls-compat.h>
37#include <stdio.h>
38#include <assert.h>
1430ee0b 39
7e30abe3 40/*
af7c2dbe
MD
41 * See urcu-pointer.h and urcu/static/urcu-pointer.h for pointer
42 * publication headers.
7e30abe3
MD
43 */
44#include <urcu-pointer.h>
45
36bc70a8
MD
46#ifdef __cplusplus
47extern "C" {
48#endif
49
ee6fabe1 50#include <urcu/map/urcu.h>
5e77fc1f 51
92b752ee
MD
52/*
53 * Important !
54 *
55 * Each thread containing read-side critical sections must be registered
5e77fc1f
PM
56 * with rcu_register_thread_mb() before calling rcu_read_lock_mb().
57 * rcu_unregister_thread_mb() should be called before the thread exits.
92b752ee
MD
58 */
59
121a5d44 60#ifdef _LGPL_SOURCE
b0d5e790 61
af7c2dbe 62#include <urcu/static/urcu.h>
3a86deba
MD
63
64/*
121a5d44
MD
65 * Mappings for static use of the userspace RCU library.
66 * Should only be used in LGPL-compatible code.
3a86deba 67 */
3a86deba 68
7e30abe3
MD
69/*
70 * rcu_read_lock()
71 * rcu_read_unlock()
72 *
73 * Mark the beginning and end of a read-side critical section.
74 * DON'T FORGET TO USE RCU_REGISTER/UNREGISTER_THREAD() FOR EACH THREAD WITH
75 * READ-SIDE CRITICAL SECTION.
76 */
5e77fc1f 77#ifdef RCU_MEMBARRIER
ef84facf
PM
78#define rcu_read_lock_memb _rcu_read_lock
79#define rcu_read_unlock_memb _rcu_read_unlock
882f3357 80#define rcu_read_ongoing_memb _rcu_read_ongoing
5e77fc1f 81#elif defined(RCU_SIGNAL)
ef84facf
PM
82#define rcu_read_lock_sig _rcu_read_lock
83#define rcu_read_unlock_sig _rcu_read_unlock
882f3357 84#define rcu_read_ongoing_sig _rcu_read_ongoing
5e77fc1f 85#elif defined(RCU_MB)
ef84facf
PM
86#define rcu_read_lock_mb _rcu_read_lock
87#define rcu_read_unlock_mb _rcu_read_unlock
882f3357 88#define rcu_read_ongoing_mb _rcu_read_ongoing
5e77fc1f 89#endif
41718ff9 90
121a5d44 91#else /* !_LGPL_SOURCE */
27b012e2 92
40e140c9 93/*
121a5d44 94 * library wrappers to be used by non-LGPL compatible source code.
af7c2dbe 95 * See LGPL-only urcu/static/urcu-pointer.h for documentation.
40e140c9 96 */
cf380c2f 97
121a5d44
MD
98extern void rcu_read_lock(void);
99extern void rcu_read_unlock(void);
882f3357 100extern int rcu_read_ongoing(void);
cf380c2f 101
121a5d44 102#endif /* !_LGPL_SOURCE */
f4a486ac 103
e462817e 104extern void synchronize_rcu(void);
27b012e2
MD
105
106/*
107 * Reader thread registration.
108 */
121a5d44
MD
109extern void rcu_register_thread(void);
110extern void rcu_unregister_thread(void);
27b012e2 111
e95f4e7f 112/*
02be5561 113 * Explicit rcu initialization, for "early" use within library constructors.
e95f4e7f 114 */
02be5561 115extern void rcu_init(void);
e95f4e7f 116
51b03c6f
MD
117/*
118 * Q.S. reporting are no-ops for these URCU flavors.
119 */
120static inline void rcu_quiescent_state(void)
121{
122}
123
124static inline void rcu_thread_offline(void)
125{
126}
127
128static inline void rcu_thread_online(void)
129{
130}
131
36bc70a8
MD
132#ifdef __cplusplus
133}
134#endif
135
ee6fabe1
MD
136#include <urcu-call-rcu.h>
137#include <urcu-defer.h>
541d828d 138#include <urcu-flavor.h>
5e77fc1f 139
27b012e2 140#endif /* _URCU_H */
This page took 0.039655 seconds and 4 git commands to generate.