static inline
struct cds_wfs_node *
-___cds_wfs_pop(struct cds_wfs_stack *s, int *state, int blocking)
+___cds_wfs_pop(cds_wfs_stack_ptr_t u_stack, int *state, int blocking)
{
struct cds_wfs_head *head, *new_head;
struct cds_wfs_node *next;
+ struct __cds_wfs_stack *s = u_stack._s;
if (state)
*state = 0;
*/
static inline
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)
{
- return ___cds_wfs_pop(s, state, 1);
+ return ___cds_wfs_pop(u_stack, state, 1);
}
static inline
struct cds_wfs_node *
-___cds_wfs_pop_blocking(struct cds_wfs_stack *s)
+___cds_wfs_pop_blocking(cds_wfs_stack_ptr_t u_stack)
{
- return ___cds_wfs_pop_with_state_blocking(s, NULL);
+ return ___cds_wfs_pop_with_state_blocking(u_stack, NULL);
}
/*
*/
static inline
struct cds_wfs_node *
-___cds_wfs_pop_with_state_nonblocking(struct cds_wfs_stack *s, int *state)
+___cds_wfs_pop_with_state_nonblocking(cds_wfs_stack_ptr_t u_stack, int *state)
{
- return ___cds_wfs_pop(s, state, 0);
+ return ___cds_wfs_pop(u_stack, state, 0);
}
/*
*/
static inline
struct cds_wfs_node *
-___cds_wfs_pop_nonblocking(struct cds_wfs_stack *s)
+___cds_wfs_pop_nonblocking(cds_wfs_stack_ptr_t u_stack)
{
- return ___cds_wfs_pop_with_state_nonblocking(s, NULL);
+ return ___cds_wfs_pop_with_state_nonblocking(u_stack, NULL);
}
/*
#define cds_wfs_node_init _cds_wfs_node_init
#define cds_wfs_init _cds_wfs_init
+#define __cds_wfs_init ___cds_wfs_init
#define cds_wfs_empty _cds_wfs_empty
#define cds_wfs_push _cds_wfs_push
* 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.
* 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.
* 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.
* 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);
/*
* 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 */
___cds_wfs_init(s);
}
-bool cds_wfs_empty(struct cds_wfs_stack *s)
+bool cds_wfs_empty(cds_wfs_stack_ptr_t u_stack)
{
- return _cds_wfs_empty(s);
+ return _cds_wfs_empty(u_stack);
}
-int cds_wfs_push(struct cds_wfs_stack *s, struct cds_wfs_node *node)
+int cds_wfs_push(cds_wfs_stack_ptr_t u_stack, struct cds_wfs_node *node)
{
- return _cds_wfs_push(s, node);
+ return _cds_wfs_push(u_stack, node);
}
struct cds_wfs_node *cds_wfs_pop_blocking(struct cds_wfs_stack *s)
_cds_wfs_pop_unlock(s);
}
-struct cds_wfs_node *__cds_wfs_pop_blocking(struct cds_wfs_stack *s)
+struct cds_wfs_node *__cds_wfs_pop_blocking(cds_wfs_stack_ptr_t u_stack)
{
- return ___cds_wfs_pop_blocking(s);
+ return ___cds_wfs_pop_blocking(u_stack);
}
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)
{
- return ___cds_wfs_pop_with_state_blocking(s, state);
+ return ___cds_wfs_pop_with_state_blocking(u_stack, state);
}
-struct cds_wfs_node *__cds_wfs_pop_nonblocking(struct cds_wfs_stack *s)
+struct cds_wfs_node *__cds_wfs_pop_nonblocking(cds_wfs_stack_ptr_t u_stack)
{
- return ___cds_wfs_pop_nonblocking(s);
+ return ___cds_wfs_pop_nonblocking(u_stack);
}
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)
{
- return ___cds_wfs_pop_with_state_nonblocking(s, state);
+ return ___cds_wfs_pop_with_state_nonblocking(u_stack, state);
}
struct cds_wfs_head *__cds_wfs_pop_all(cds_wfs_stack_ptr_t u_stack)