RCU wait-free stack: add _blocking in pop() primitive name
[urcu.git] / urcu / rcuwfstack.h
index f9a45b2209af131fb80724e8e9fc317b094f5c9f..300c95e3280b47c809b51a433d08844421f79525 100644 (file)
@@ -29,7 +29,7 @@
 #error "Dynamic loader LGPL wrappers not implemented yet"
 #endif
 
-#define RCU_WF_STACK_END ((void *)0x1UL)
+#define RCU_WF_STACK_END               ((void *)0x1UL)
 
 struct rcu_wfs_node {
        struct rcu_wfs_node *next;
@@ -83,7 +83,7 @@ void rcu_wfs_push(struct rcu_wfs_stack *s, struct rcu_wfs_node *node)
  * loops. Better for UP.
  */
 struct rcu_wfs_node *
-rcu_wfs_pop(struct rcu_wfs_stack *s)
+rcu_wfs_pop_blocking(struct rcu_wfs_stack *s)
 {
        for (;;) {
                struct rcu_wfs_node *head;
This page took 0.022588 seconds and 4 git commands to generate.