7 * Userspace RCU header - deferred execution
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
15 * #include <urcu-defer.h>
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
40 * Note: the defer_rcu() API is currently EXPERIMENTAL. It may change in the
45 * Each thread queuing memory reclamation must be registered with
46 * rcu_defer_register_thread(). rcu_defer_unregister_thread() should be
47 * called before the thread exits.
49 * *NEVER* use defer_rcu() within a RCU read-side critical section, because this
50 * primitive need to call synchronize_rcu() if the thread queue is full.
53 extern void defer_rcu(void (*fct
)(void *p
), void *p
);
56 * Thread registration for reclamation.
58 extern int rcu_defer_register_thread(void);
59 extern void rcu_defer_unregister_thread(void);
60 extern void rcu_defer_barrier(void);
61 extern void rcu_defer_barrier_thread(void);
67 #endif /* _URCU_BATCH_H */
This page took 0.029695 seconds and 4 git commands to generate.