uatomic/x86: Remove redundant memory barriers
[urcu.git] / include / urcu / call-rcu.h
... / ...
CommitLineData
1// SPDX-FileCopyrightText: 2009 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
2// SPDX-FileCopyrightText: 2009 Paul E. McKenney, IBM Corporation.
3//
4// SPDX-License-Identifier: LGPL-2.1-or-later
5
6#ifndef _URCU_CALL_RCU_H
7#define _URCU_CALL_RCU_H
8
9/*
10 * Userspace RCU header - batch memory reclamation with kernel API
11 *
12 * This header is meant to be included indirectly through a liburcu
13 * flavor header.
14 */
15
16#include <stdlib.h>
17#include <pthread.h>
18
19#include <urcu/wfcqueue.h>
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25/* Note that struct call_rcu_data is opaque to callers. */
26
27struct call_rcu_data;
28
29/* Flag values. */
30
31#define URCU_CALL_RCU_RT (1U << 0)
32#define URCU_CALL_RCU_RUNNING (1U << 1)
33#define URCU_CALL_RCU_STOP (1U << 2)
34#define URCU_CALL_RCU_STOPPED (1U << 3)
35#define URCU_CALL_RCU_PAUSE (1U << 4)
36#define URCU_CALL_RCU_PAUSED (1U << 5)
37
38/*
39 * The rcu_head data structure is placed in the structure to be freed
40 * via call_rcu().
41 */
42
43struct rcu_head {
44 struct cds_wfcq_node next;
45 void (*func)(struct rcu_head *head);
46};
47
48/*
49 * Exported functions
50 *
51 * Important: see rcu-api.md in userspace-rcu documentation for
52 * call_rcu family of functions usage detail, including the surrounding
53 * RCU usage required when using these primitives.
54 */
55
56void call_rcu(struct rcu_head *head,
57 void (*func)(struct rcu_head *head));
58
59struct call_rcu_data *create_call_rcu_data(unsigned long flags,
60 int cpu_affinity);
61void call_rcu_data_free(struct call_rcu_data *crdp);
62
63struct call_rcu_data *get_default_call_rcu_data(void);
64struct call_rcu_data *get_cpu_call_rcu_data(int cpu);
65struct call_rcu_data *get_thread_call_rcu_data(void);
66struct call_rcu_data *get_call_rcu_data(void);
67pthread_t get_call_rcu_thread(struct call_rcu_data *crdp);
68
69void set_thread_call_rcu_data(struct call_rcu_data *crdp);
70int set_cpu_call_rcu_data(int cpu, struct call_rcu_data *crdp);
71
72int create_all_cpu_call_rcu_data(unsigned long flags);
73void free_all_cpu_call_rcu_data(void);
74
75void call_rcu_before_fork(void);
76void call_rcu_after_fork_parent(void);
77void call_rcu_after_fork_child(void);
78
79void rcu_barrier(void);
80
81#ifdef __cplusplus
82}
83#endif
84
85#endif /* _URCU_CALL_RCU_H */
This page took 0.023039 seconds and 5 git commands to generate.