9 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 * Copyright (c) 2009 Paul E. McKenney, IBM Corporation.
12 * LGPL-compatible code should include this header with :
14 * #define _LGPL_SOURCE
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.
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.
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
31 * IBM's contributions to this file may be relicensed under LGPLv2 or later.
39 * See urcu/pointer.h and urcu/static/pointer.h for pointer
40 * publication headers.
42 #include <urcu/pointer.h>
43 #include <urcu/urcu-poll.h>
49 #include <urcu/map/urcu-memb.h>
54 * Each thread containing read-side critical sections must be registered
55 * with rcu_register_thread_mb() before calling rcu_read_lock_mb().
56 * rcu_unregister_thread_mb() should be called before the thread exits.
61 #include <urcu/static/urcu-memb.h>
64 * Mappings for static use of the userspace RCU library.
65 * Should only be used in LGPL-compatible code.
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.
76 #define urcu_memb_read_lock _urcu_memb_read_lock
77 #define urcu_memb_read_unlock _urcu_memb_read_unlock
78 #define urcu_memb_read_ongoing _urcu_memb_read_ongoing
80 #else /* !_LGPL_SOURCE */
83 * library wrappers to be used by non-LGPL compatible source code.
84 * See LGPL-only urcu/static/pointer.h for documentation.
87 extern void urcu_memb_read_lock(void);
88 extern void urcu_memb_read_unlock(void);
89 extern int urcu_memb_read_ongoing(void);
91 #endif /* !_LGPL_SOURCE */
93 extern void urcu_memb_synchronize_rcu(void);
96 * RCU grace period polling API.
98 extern struct urcu_gp_poll_state
urcu_memb_start_poll_synchronize_rcu(void);
99 extern bool urcu_memb_poll_state_synchronize_rcu(struct urcu_gp_poll_state state
);
102 * Reader thread registration.
104 extern void urcu_memb_register_thread(void);
105 extern void urcu_memb_unregister_thread(void);
108 * Explicit rcu initialization, for "early" use within library constructors.
110 extern void urcu_memb_init(void);
113 * Q.S. reporting are no-ops for these URCU flavors.
115 static inline void urcu_memb_quiescent_state(void)
119 static inline void urcu_memb_thread_offline(void)
123 static inline void urcu_memb_thread_online(void)
131 #include <urcu/call-rcu.h>
132 #include <urcu/defer.h>
133 #include <urcu/flavor.h>
136 #include <urcu/map/clear.h>
139 #endif /* _URCU_MEMB_H */
This page took 0.059721 seconds and 4 git commands to generate.