X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu%2Fwfstack.h;h=9d693053117ceb93e69034e433f2196a22c3070d;hp=b914f41e6cfdd17e42648ef0867bf92b4526da1c;hb=200d100e05ed8e10c47f971939042f2406df92ef;hpb=718eb63eed91f0a06afd1a129813275ecc3e21eb diff --git a/urcu/wfstack.h b/urcu/wfstack.h index b914f41..9d69305 100644 --- a/urcu/wfstack.h +++ b/urcu/wfstack.h @@ -97,10 +97,10 @@ struct cds_wfs_stack { * struct cds_wfs_stack and struct __cds_wfs_stack on any of those two * types. */ -typedef union __attribute__((__transparent_union__)) { +typedef union { struct __cds_wfs_stack *_s; struct cds_wfs_stack *s; -} cds_wfs_stack_ptr_t; +} __attribute__((__transparent_union__)) cds_wfs_stack_ptr_t; #ifdef _LGPL_SOURCE @@ -108,6 +108,8 @@ typedef union __attribute__((__transparent_union__)) { #define cds_wfs_node_init _cds_wfs_node_init #define cds_wfs_init _cds_wfs_init +#define cds_wfs_destroy _cds_wfs_destroy +#define __cds_wfs_init ___cds_wfs_init #define cds_wfs_empty _cds_wfs_empty #define cds_wfs_push _cds_wfs_push @@ -145,12 +147,20 @@ typedef union __attribute__((__transparent_union__)) { extern void cds_wfs_node_init(struct cds_wfs_node *node); /* - * cds_wfs_init: initialize wait-free stack. + * cds_wfs_init: initialize wait-free stack (with lock). Pair with + * cds_wfs_destroy(). */ extern void cds_wfs_init(struct cds_wfs_stack *s); /* - * __cds_wfs_init: initialize wait-free stack. + * cds_wfs_destroy: destroy wait-free stack (with lock). Pair with + * cds_wfs_init(). + */ +extern void cds_wfs_destroy(struct cds_wfs_stack *s); + +/* + * __cds_wfs_init: initialize wait-free stack (no lock). Don't pair with + * any destroy function. */ extern void __cds_wfs_init(struct __cds_wfs_stack *s); @@ -258,7 +268,7 @@ extern void cds_wfs_pop_unlock(struct cds_wfs_stack *s); * 3) Ensuring that only ONE thread can call __cds_wfs_pop_blocking() * and __cds_wfs_pop_all(). (multi-provider/single-consumer scheme). */ -extern struct cds_wfs_node *__cds_wfs_pop_blocking(struct cds_wfs_stack *s); +extern struct cds_wfs_node *__cds_wfs_pop_blocking(cds_wfs_stack_ptr_t u_stack); /* * __cds_wfs_pop_with_state_blocking: pop a node from the stack, with state. @@ -267,7 +277,8 @@ extern struct cds_wfs_node *__cds_wfs_pop_blocking(struct cds_wfs_stack *s); * empty into state (CDS_WFS_STATE_LAST). */ extern struct cds_wfs_node * - __cds_wfs_pop_with_state_blocking(struct cds_wfs_stack *s, int *state); + __cds_wfs_pop_with_state_blocking(cds_wfs_stack_ptr_t u_stack, + int *state); /* * __cds_wfs_pop_nonblocking: pop a node from the stack. @@ -275,7 +286,7 @@ extern struct cds_wfs_node * * Same as __cds_wfs_pop_blocking, but returns CDS_WFS_WOULDBLOCK if * it needs to block. */ -extern struct cds_wfs_node *__cds_wfs_pop_nonblocking(struct cds_wfs_stack *s); +extern struct cds_wfs_node *__cds_wfs_pop_nonblocking(cds_wfs_stack_ptr_t u_stack); /* * __cds_wfs_pop_with_state_nonblocking: pop a node from the stack, with state. @@ -284,7 +295,7 @@ extern struct cds_wfs_node *__cds_wfs_pop_nonblocking(struct cds_wfs_stack *s); * empty into state (CDS_WFS_STATE_LAST). */ extern struct cds_wfs_node * - __cds_wfs_pop_with_state_nonblocking(struct cds_wfs_stack *s, + __cds_wfs_pop_with_state_nonblocking(cds_wfs_stack_ptr_t u_stack, int *state); /* @@ -304,7 +315,7 @@ extern struct cds_wfs_node * * 3) Ensuring that only ONE thread can call __cds_wfs_pop_blocking() * and __cds_wfs_pop_all(). (multi-provider/single-consumer scheme). */ -extern struct cds_wfs_head *__cds_wfs_pop_all(struct cds_wfs_stack *s); +extern struct cds_wfs_head *__cds_wfs_pop_all(cds_wfs_stack_ptr_t u_stack); #endif /* !_LGPL_SOURCE */