X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=include%2Furcu%2Fwfstack.h;h=5d58a9143ffb49eaaf6f2a1ad491aa34a81048d3;hp=1e8b73ad192c6aba3b7500b0df3ab0b980fb1e10;hb=c38fa0271a8c008d1bfa26cab674ee5ac9d6ac86;hpb=3ad920b448e4ab7187a9c73e5578cad87a8f7a26 diff --git a/include/urcu/wfstack.h b/include/urcu/wfstack.h index 1e8b73a..5d58a91 100644 --- a/include/urcu/wfstack.h +++ b/include/urcu/wfstack.h @@ -360,7 +360,7 @@ extern struct cds_wfs_head *__cds_wfs_pop_all(cds_wfs_stack_ptr_t u_stack); * to obtain an API similar to C. */ -static inline cds_wfs_stack_ptr_t __cds_wfs_stack_cast(struct __cds_wfs_stack *s) +static inline cds_wfs_stack_ptr_t cds_wfs_stack_cast(struct __cds_wfs_stack *s) { cds_wfs_stack_ptr_t ret = { ._s = s, @@ -376,77 +376,40 @@ static inline cds_wfs_stack_ptr_t cds_wfs_stack_cast(struct cds_wfs_stack *s) return ret; } -static inline bool cds_wfs_empty(struct __cds_wfs_stack *s) -{ - return cds_wfs_empty(__cds_wfs_stack_cast(s)); -} - -static inline bool cds_wfs_empty(struct cds_wfs_stack *s) +template static inline bool cds_wfs_empty(T s) { return cds_wfs_empty(cds_wfs_stack_cast(s)); } -static inline int cds_wfs_push(struct __cds_wfs_stack *s, struct cds_wfs_node *node) -{ - return cds_wfs_push(__cds_wfs_stack_cast(s), node); -} - -static inline int cds_wfs_push(struct cds_wfs_stack *s, struct cds_wfs_node *node) +template static inline int cds_wfs_push(T s, struct cds_wfs_node *node) { return cds_wfs_push(cds_wfs_stack_cast(s), node); } -static inline struct cds_wfs_node *__cds_wfs_pop_blocking(struct __cds_wfs_stack *s) -{ - return __cds_wfs_pop_blocking(__cds_wfs_stack_cast(s)); -} - -static inline struct cds_wfs_node *__cds_wfs_pop_blocking(struct cds_wfs_stack *s) +template static inline struct cds_wfs_node *__cds_wfs_pop_blocking(T s) { return __cds_wfs_pop_blocking(cds_wfs_stack_cast(s)); } -static inline struct cds_wfs_node * - __cds_wfs_pop_with_state_blocking(struct __cds_wfs_stack *s, int *state) -{ - return __cds_wfs_pop_with_state_blocking(__cds_wfs_stack_cast(s), state); -} - -static inline struct cds_wfs_node * - __cds_wfs_pop_with_state_blocking(struct cds_wfs_stack *s, int *state) +template static inline struct cds_wfs_node * + __cds_wfs_pop_with_state_blocking(T s, int *state) { return __cds_wfs_pop_with_state_blocking(cds_wfs_stack_cast(s), state); } -static inline struct cds_wfs_node *__cds_wfs_pop_nonblocking(struct __cds_wfs_stack *s) +template static inline struct cds_wfs_node *__cds_wfs_pop_nonblocking(T s) -{ - return __cds_wfs_pop_nonblocking(__cds_wfs_stack_cast(s)); -} - -static inline struct cds_wfs_node *__cds_wfs_pop_nonblocking(struct cds_wfs_stack *s) { return __cds_wfs_pop_nonblocking(cds_wfs_stack_cast(s)); } -static inline struct cds_wfs_node * - __cds_wfs_pop_with_state_nonblocking(struct __cds_wfs_stack *s, int *state) -{ - return __cds_wfs_pop_with_state_nonblocking(__cds_wfs_stack_cast(s), state); -} - -static inline struct cds_wfs_node * - __cds_wfs_pop_with_state_nonblocking(struct cds_wfs_stack *s, int *state) +template static inline struct cds_wfs_node * + __cds_wfs_pop_with_state_nonblocking(T s, int *state) { return __cds_wfs_pop_with_state_nonblocking(cds_wfs_stack_cast(s), state); } -static inline struct cds_wfs_head *__cds_wfs_pop_all(struct __cds_wfs_stack *s) -{ - return __cds_wfs_pop_all(__cds_wfs_stack_cast(s)); -} - -static inline struct cds_wfs_head *__cds_wfs_pop_all(struct cds_wfs_stack *s) +template static inline struct cds_wfs_head *__cds_wfs_pop_all(T s) { return __cds_wfs_pop_all(cds_wfs_stack_cast(s)); }