Merge remote branch 'origin/urcu/ht' into urcu/ht
[urcu.git] / urcu / static / wfstack.h
CommitLineData
294d3396
MD
1#ifndef _URCU_WFSTACK_STATIC_H
2#define _URCU_WFSTACK_STATIC_H
3
4/*
5 * wfstack-static.h
6 *
7 * Userspace RCU library - Stack with Wait-Free push, Blocking pop.
8 *
9 * TO BE INCLUDED ONLY IN LGPL-COMPATIBLE CODE. See wfstack.h for linking
10 * dynamically with the userspace rcu library.
11 *
12 * Copyright 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13 *
14 * This library is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU Lesser General Public
16 * License as published by the Free Software Foundation; either
17 * version 2.1 of the License, or (at your option) any later version.
18 *
19 * This library is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 * Lesser General Public License for more details.
23 *
24 * You should have received a copy of the GNU Lesser General Public
25 * License along with this library; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 */
28
29#include <pthread.h>
30#include <assert.h>
b57aee66 31#include <poll.h>
294d3396 32#include <urcu/compiler.h>
a2e7bf9c 33#include <urcu/uatomic.h>
294d3396
MD
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
16aa9ee8
DG
39#define CDS_WF_STACK_END ((void *)0x1UL)
40#define CDS_WFS_ADAPT_ATTEMPTS 10 /* Retry if being set */
41#define CDS_WFS_WAIT 10 /* Wait 10 ms if being set */
294d3396 42
9dc88477 43static inline
16aa9ee8 44void _cds_wfs_node_init(struct cds_wfs_node *node)
294d3396
MD
45{
46 node->next = NULL;
47}
48
9dc88477 49static inline
16aa9ee8 50void _cds_wfs_init(struct cds_wfs_stack *s)
294d3396
MD
51{
52 int ret;
53
16aa9ee8 54 s->head = CDS_WF_STACK_END;
294d3396
MD
55 ret = pthread_mutex_init(&s->lock, NULL);
56 assert(!ret);
57}
58
9dc88477 59static inline
16aa9ee8 60void _cds_wfs_push(struct cds_wfs_stack *s, struct cds_wfs_node *node)
294d3396 61{
16aa9ee8 62 struct cds_wfs_node *old_head;
294d3396
MD
63
64 assert(node->next == NULL);
65 /*
66 * uatomic_xchg() implicit memory barrier orders earlier stores to node
67 * (setting it to NULL) before publication.
68 */
69 old_head = uatomic_xchg(&s->head, node);
70 /*
71 * At this point, dequeuers see a NULL node->next, they should busy-wait
72 * until node->next is set to old_head.
73 */
6cf3827c 74 CMM_STORE_SHARED(node->next, old_head);
294d3396
MD
75}
76
77/*
78 * Returns NULL if stack is empty.
79 */
9dc88477 80static inline
16aa9ee8
DG
81struct cds_wfs_node *
82___cds_wfs_pop_blocking(struct cds_wfs_stack *s)
294d3396 83{
16aa9ee8 84 struct cds_wfs_node *head, *next;
294d3396
MD
85 int attempt = 0;
86
87retry:
6cf3827c 88 head = CMM_LOAD_SHARED(s->head);
16aa9ee8 89 if (head == CDS_WF_STACK_END)
294d3396
MD
90 return NULL;
91 /*
92 * Adaptative busy-looping waiting for push to complete.
93 */
6cf3827c 94 while ((next = CMM_LOAD_SHARED(head->next)) == NULL) {
16aa9ee8
DG
95 if (++attempt >= CDS_WFS_ADAPT_ATTEMPTS) {
96 poll(NULL, 0, CDS_WFS_WAIT); /* Wait for 10ms */
294d3396
MD
97 attempt = 0;
98 } else
06f22bdb 99 caa_cpu_relax();
294d3396
MD
100 }
101 if (uatomic_cmpxchg(&s->head, head, next) == head)
102 return head;
103 else
104 goto retry; /* Concurrent modification. Retry. */
105}
106
9dc88477 107static inline
16aa9ee8
DG
108struct cds_wfs_node *
109_cds_wfs_pop_blocking(struct cds_wfs_stack *s)
294d3396 110{
16aa9ee8 111 struct cds_wfs_node *retnode;
294d3396
MD
112 int ret;
113
114 ret = pthread_mutex_lock(&s->lock);
115 assert(!ret);
16aa9ee8 116 retnode = ___cds_wfs_pop_blocking(s);
294d3396
MD
117 ret = pthread_mutex_unlock(&s->lock);
118 assert(!ret);
119 return retnode;
120}
121
122#ifdef __cplusplus
123}
124#endif
125
126#endif /* _URCU_WFSTACK_STATIC_H */
This page took 0.02786 seconds and 4 git commands to generate.