2b722c0a1e0dcf1fda29236534b6f99758be6379
2 * Copyright (C) 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 #include <urcu-qsbr.h> /* QSBR RCU flavor */
25 #include <urcu/rculist.h> /* List example */
26 #include <urcu/compiler.h> /* For CAA_ARRAY_SIZE */
29 * This is a mock-up example where updates and RCU traversals are
30 * performed by the same thread to keep things simple on purpose.
33 static CDS_LIST_HEAD(mylist
);
37 struct cds_list_head node
; /* linked-list chaining */
38 struct rcu_head rcu_head
; /* for call_rcu() */
42 int add_node(uint64_t v
)
46 node
= calloc(sizeof(*node
), 1);
50 cds_list_add_rcu(&node
->node
, &mylist
);
55 void rcu_free_node(struct rcu_head
*rh
)
57 struct mynode
*node
= caa_container_of(rh
, struct mynode
, rcu_head
);
62 int main(int argc
, char **argv
)
64 uint64_t values
[] = { 42, 36, 24, };
67 struct mynode
*node
, *n
;
70 * Each thread need using RCU read-side need to be explicitly
73 rcu_register_thread();
76 * Adding nodes to the linked-list. Safe against concurrent
77 * RCU traversals, require mutual exclusion with list updates.
79 for (i
= 0; i
< CAA_ARRAY_SIZE(values
); i
++) {
80 ret
= add_node(values
[i
]);
86 * For all RCU flavors except QSBR, we need to explicitly mark
87 * RCU read-side critical sections with rcu_read_lock() and
88 * rcu_read_unlock(). They can be nested. Those are no-ops for
94 * RCU traversal of the linked list.
96 cds_list_for_each_entry_rcu(node
, &mylist
, node
) {
97 printf("Value: %" PRIu64
"\n", node
->value
);
102 * Removing nodes from linked list. Safe against concurrent RCU
103 * traversals, require mutual exclusion with list updates.
105 cds_list_for_each_entry_safe(node
, n
, &mylist
, node
) {
106 cds_list_del_rcu(&node
->node
);
107 call_rcu(&node
->rcu_head
, rcu_free_node
);
111 * For QSBR flavor, we need to explicitly announce quiescent
112 * states. Here is how it is done. This should be performed by
113 * every online registered RCU threads in the program
116 rcu_quiescent_state();
119 * For QSBR flavor, when a thread needs to be in a quiescent
120 * state for a long period of time, we use rcu_thread_offline()
121 * and rcu_thread_online().
123 rcu_thread_offline();
130 * Waiting for previously called call_rcu handlers to complete
131 * before program exits, or in library destructors, is a good
137 rcu_unregister_thread();
This page took 0.031816 seconds and 3 git commands to generate.