1 #ifndef _URCU_LFSTACK_H
2 #define _URCU_LFSTACK_H
7 * Userspace RCU library - Lock-Free Stack
9 * Copyright 2010-2012 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
36 * Stack implementing push, pop, pop_all operations, as well as iterator
37 * on the stack head returned by pop_all.
39 * Synchronization table:
41 * External synchronization techniques described in the API below is
42 * required between pairs marked with "X". No external synchronization
43 * required between pairs marked with "-".
45 * cds_lfs_push __cds_lfs_pop __cds_lfs_pop_all
48 * __cds_lfs_pop_all - X -
50 * cds_lfs_pop_blocking and cds_lfs_pop_all_blocking use an internal
51 * mutex to provide synchronization.
55 * struct cds_lfs_node is returned by cds_lfs_pop, and also used as
56 * iterator on stack. It is not safe to dereference the node next
57 * pointer when returned by cds_lfs_pop.
60 struct cds_lfs_node
*next
;
64 * struct cds_lfs_head is returned by __cds_lfs_pop_all, and can be used
65 * to begin iteration on the stack. "node" needs to be the first field
66 * of cds_lfs_head, so the end-of-stack pointer value can be used for
70 struct cds_lfs_node node
;
73 struct __cds_lfs_stack
{
74 struct cds_lfs_head
*head
;
77 struct cds_lfs_stack
{
78 struct cds_lfs_head
*head
;
83 * The transparent union allows calling functions that work on both
84 * struct cds_lfs_stack and struct __cds_lfs_stack on any of those two
88 struct __cds_lfs_stack
*_s
;
89 struct cds_lfs_stack
*s
;
90 } __attribute__((__transparent_union__
)) cds_lfs_stack_ptr_t
;
94 #include <urcu/static/lfstack.h>
96 #define cds_lfs_node_init _cds_lfs_node_init
97 #define cds_lfs_init _cds_lfs_init
98 #define __cds_lfs_init ___cds_lfs_init
99 #define cds_lfs_empty _cds_lfs_empty
100 #define cds_lfs_push _cds_lfs_push
102 /* Locking performed internally */
103 #define cds_lfs_pop_blocking _cds_lfs_pop_blocking
104 #define cds_lfs_pop_all_blocking _cds_lfs_pop_all_blocking
106 /* Synchronize pop with internal mutex */
107 #define cds_lfs_pop_lock _cds_lfs_pop_lock
108 #define cds_lfs_pop_unlock _cds_lfs_pop_unlock
110 /* Synchronization ensured by the caller. See synchronization table. */
111 #define __cds_lfs_pop ___cds_lfs_pop
112 #define __cds_lfs_pop_all ___cds_lfs_pop_all
114 #else /* !_LGPL_SOURCE */
117 * cds_lfs_node_init: initialize lock-free stack node.
119 extern void cds_lfs_node_init(struct cds_lfs_node
*node
);
122 * cds_lfs_init: initialize lock-free stack.
124 extern void cds_lfs_init(struct cds_lfs_stack
*s
);
127 * __cds_lfs_init: initialize lock-free stack.
129 extern void __cds_lfs_init(struct __cds_lfs_stack
*s
);
132 * cds_lfs_empty: return whether lock-free stack is empty.
134 * No memory barrier is issued. No mutual exclusion is required.
136 extern bool cds_lfs_empty(cds_lfs_stack_ptr_t s
);
139 * cds_lfs_push: push a node into the stack.
141 * Does not require any synchronization with other push nor pop.
143 * Returns 0 if the stack was empty prior to adding the node.
144 * Returns non-zero otherwise.
146 extern bool cds_lfs_push(cds_lfs_stack_ptr_t s
,
147 struct cds_lfs_node
*node
);
150 * cds_lfs_pop_blocking: pop a node from the stack.
152 * Calls __cds_lfs_pop with an internal pop mutex held.
154 extern struct cds_lfs_node
*cds_lfs_pop_blocking(struct cds_lfs_stack
*s
);
157 * cds_lfs_pop_all_blocking: pop all nodes from a stack.
159 * Calls __cds_lfs_pop_all with an internal pop mutex held.
161 extern struct cds_lfs_head
*cds_lfs_pop_all_blocking(struct cds_lfs_stack
*s
);
164 * cds_lfs_pop_lock: lock stack pop-protection mutex.
166 extern void cds_lfs_pop_lock(struct cds_lfs_stack
*s
);
169 * cds_lfs_pop_unlock: unlock stack pop-protection mutex.
171 extern void cds_lfs_pop_unlock(struct cds_lfs_stack
*s
);
174 * __cds_lfs_pop: pop a node from the stack.
176 * Returns NULL if stack is empty.
178 * __cds_lfs_pop needs to be synchronized using one of the following
181 * 1) Calling __cds_lfs_pop under rcu read lock critical section.
182 * Both __cds_lfs_pop and __cds_lfs_pop_all callers must wait for a
183 * grace period to pass before freeing the returned node or pushing
184 * the node back into the stack. It is valid to overwrite the content
185 * of cds_lfs_node immediately after __cds_lfs_pop and
187 * 2) Using mutual exclusion (e.g. mutexes) to protect __cds_lfs_pop
188 * and __cds_lfs_pop_all callers.
189 * 3) Ensuring that only ONE thread can call __cds_lfs_pop() and
190 * __cds_lfs_pop_all(). (multi-provider/single-consumer scheme).
192 extern struct cds_lfs_node
*__cds_lfs_pop(cds_lfs_stack_ptr_t s
);
195 * __cds_lfs_pop_all: pop all nodes from a stack.
197 * __cds_lfs_pop_all does not require any synchronization with other
198 * push, nor with other __cds_lfs_pop_all, but requires synchronization
199 * matching the technique used to synchronize __cds_lfs_pop:
201 * 1) If __cds_lfs_pop is called under rcu read lock critical section,
202 * both __cds_lfs_pop and __cds_lfs_pop_all callers must wait for a
203 * grace period to pass before freeing the returned node or pushing
204 * the node back into the stack. It is valid to overwrite the content
205 * of cds_lfs_node immediately after __cds_lfs_pop and
206 * __cds_lfs_pop_all. No RCU read-side critical section is needed
207 * around __cds_lfs_pop_all.
208 * 2) Using mutual exclusion (e.g. mutexes) to protect __cds_lfs_pop and
209 * __cds_lfs_pop_all callers.
210 * 3) Ensuring that only ONE thread can call __cds_lfs_pop() and
211 * __cds_lfs_pop_all(). (multi-provider/single-consumer scheme).
213 extern struct cds_lfs_head
*__cds_lfs_pop_all(cds_lfs_stack_ptr_t s
);
215 #endif /* !_LGPL_SOURCE */
218 * cds_lfs_for_each: Iterate over all nodes returned by
220 * @__head: node returned by __cds_lfs_pop_all (struct cds_lfs_head pointer).
221 * @__node: node to use as iterator (struct cds_lfs_node pointer).
223 * Content written into each node before push is guaranteed to be
224 * consistent, but no other memory ordering is ensured.
226 #define cds_lfs_for_each(__head, __node) \
227 for (__node = &__head->node; \
229 __node = __node->next)
232 * cds_lfs_for_each_safe: Iterate over all nodes returned by
233 * __cds_lfs_pop_all, safe against node deletion.
234 * @__head: node returned by __cds_lfs_pop_all (struct cds_lfs_head pointer).
235 * @__node: node to use as iterator (struct cds_lfs_node pointer).
236 * @__n: struct cds_lfs_node pointer holding the next pointer (used
239 * Content written into each node before push is guaranteed to be
240 * consistent, but no other memory ordering is ensured.
242 #define cds_lfs_for_each_safe(__head, __node, __n) \
243 for (__node = &__head->node, __n = (__node ? __node->next : NULL); \
245 __node = __n, __n = (__node ? __node->next : NULL))
251 #endif /* _URCU_LFSTACK_H */
This page took 0.033755 seconds and 4 git commands to generate.