For the sake of wrapper API, implement a cds_wfcq_head_cast_cpp with
overloading, thus leaving in place the cds_wfcq_head_cast and
__cds_wfcq_head_cast C identifiers already exposed by the C++ API.
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: Id9781d46290c47b81a57f48fc045b6307c1143de
#else /* #ifndef __cplusplus */
/*
#else /* #ifndef __cplusplus */
/*
- * This static inline is used by C++ function overloading. It is also
- * used internally in the static inline implementation of the API.
+ * This static inline is used by internally in the static inline
+ * implementation of the API.
*/
static inline cds_wfcq_head_ptr_t __cds_wfcq_head_cast(struct __cds_wfcq_head *head)
{
*/
static inline cds_wfcq_head_ptr_t __cds_wfcq_head_cast(struct __cds_wfcq_head *head)
{
- * This static inline is used by C++ function overloading. It is also
- * used internally in the static inline implementation of the API.
+ * This static inline is used by internally in the static inline
+ * implementation of the API.
*/
static inline cds_wfcq_head_ptr_t cds_wfcq_head_cast(struct cds_wfcq_head *head)
{
*/
static inline cds_wfcq_head_ptr_t cds_wfcq_head_cast(struct cds_wfcq_head *head)
{
* to obtain an API similar to C.
*/
* to obtain an API similar to C.
*/
+static inline cds_wfcq_head_ptr_t cds_wfcq_head_cast_cpp(struct __cds_wfcq_head *head)
+{
+ cds_wfcq_head_ptr_t ret = { ._h = head };
+ return ret;
+}
+
+static inline cds_wfcq_head_ptr_t cds_wfcq_head_cast_cpp(struct cds_wfcq_head *head)
+{
+ cds_wfcq_head_ptr_t ret = { .h = head };
+ return ret;
+}
+
static inline bool cds_wfcq_empty(struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
static inline bool cds_wfcq_empty(struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return cds_wfcq_empty(__cds_wfcq_head_cast(head), tail);
+ return cds_wfcq_empty(cds_wfcq_head_cast_cpp(head), tail);
}
static inline bool cds_wfcq_empty(struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
}
static inline bool cds_wfcq_empty(struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return cds_wfcq_empty(cds_wfcq_head_cast(head), tail);
+ return cds_wfcq_empty(cds_wfcq_head_cast_cpp(head), tail);
}
static inline bool cds_wfcq_enqueue(struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
}
static inline bool cds_wfcq_enqueue(struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
- return cds_wfcq_enqueue(__cds_wfcq_head_cast(head), tail, node);
+ return cds_wfcq_enqueue(cds_wfcq_head_cast_cpp(head), tail, node);
}
static inline bool cds_wfcq_enqueue(struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
}
static inline bool cds_wfcq_enqueue(struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
- return cds_wfcq_enqueue(cds_wfcq_head_cast(head), tail, node);
+ return cds_wfcq_enqueue(cds_wfcq_head_cast_cpp(head), tail, node);
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_blocking(
struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_blocking(
struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return __cds_wfcq_dequeue_blocking(__cds_wfcq_head_cast(head), tail);
+ return __cds_wfcq_dequeue_blocking(cds_wfcq_head_cast_cpp(head), tail);
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_blocking(
struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_blocking(
struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return __cds_wfcq_dequeue_blocking(cds_wfcq_head_cast(head), tail);
+ return __cds_wfcq_dequeue_blocking(cds_wfcq_head_cast_cpp(head), tail);
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_with_state_blocking(
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_with_state_blocking(
struct cds_wfcq_tail *tail,
int *state)
{
struct cds_wfcq_tail *tail,
int *state)
{
- return __cds_wfcq_dequeue_with_state_blocking(__cds_wfcq_head_cast(head),
+ return __cds_wfcq_dequeue_with_state_blocking(cds_wfcq_head_cast_cpp(head),
struct cds_wfcq_tail *tail,
int *state)
{
struct cds_wfcq_tail *tail,
int *state)
{
- return __cds_wfcq_dequeue_with_state_blocking(cds_wfcq_head_cast(head),
+ return __cds_wfcq_dequeue_with_state_blocking(cds_wfcq_head_cast_cpp(head),
struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return __cds_wfcq_dequeue_nonblocking(__cds_wfcq_head_cast(head), tail);
+ return __cds_wfcq_dequeue_nonblocking(cds_wfcq_head_cast_cpp(head), tail);
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_nonblocking(
struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_nonblocking(
struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return __cds_wfcq_dequeue_nonblocking(cds_wfcq_head_cast(head), tail);
+ return __cds_wfcq_dequeue_nonblocking(cds_wfcq_head_cast_cpp(head), tail);
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_with_state_nonblocking(
}
static inline struct cds_wfcq_node *__cds_wfcq_dequeue_with_state_nonblocking(
struct cds_wfcq_tail *tail,
int *state)
{
struct cds_wfcq_tail *tail,
int *state)
{
- return __cds_wfcq_dequeue_with_state_nonblocking(__cds_wfcq_head_cast(head),
+ return __cds_wfcq_dequeue_with_state_nonblocking(cds_wfcq_head_cast_cpp(head),
struct cds_wfcq_tail *tail,
int *state)
{
struct cds_wfcq_tail *tail,
int *state)
{
- return __cds_wfcq_dequeue_with_state_nonblocking(cds_wfcq_head_cast(head),
+ return __cds_wfcq_dequeue_with_state_nonblocking(cds_wfcq_head_cast_cpp(head),
struct __cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
struct __cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
- return __cds_wfcq_splice_blocking(__cds_wfcq_head_cast(dest_q_head),
+ return __cds_wfcq_splice_blocking(cds_wfcq_head_cast_cpp(dest_q_head),
- __cds_wfcq_head_cast(src_q_head),
+ cds_wfcq_head_cast_cpp(src_q_head),
struct __cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
struct __cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
- return __cds_wfcq_splice_blocking(cds_wfcq_head_cast(dest_q_head),
+ return __cds_wfcq_splice_blocking(cds_wfcq_head_cast_cpp(dest_q_head),
- __cds_wfcq_head_cast(src_q_head),
+ cds_wfcq_head_cast_cpp(src_q_head),
struct cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
struct cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
- return __cds_wfcq_splice_blocking(__cds_wfcq_head_cast(dest_q_head),
+ return __cds_wfcq_splice_blocking(cds_wfcq_head_cast_cpp(dest_q_head),
- cds_wfcq_head_cast(src_q_head),
+ cds_wfcq_head_cast_cpp(src_q_head),
struct cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
struct cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
- return __cds_wfcq_splice_blocking(cds_wfcq_head_cast(dest_q_head),
+ return __cds_wfcq_splice_blocking(cds_wfcq_head_cast_cpp(dest_q_head),
- cds_wfcq_head_cast(src_q_head),
+ cds_wfcq_head_cast_cpp(src_q_head),
struct __cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
struct __cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
- return __cds_wfcq_splice_nonblocking(__cds_wfcq_head_cast(dest_q_head),
+ return __cds_wfcq_splice_nonblocking(cds_wfcq_head_cast_cpp(dest_q_head),
- __cds_wfcq_head_cast(src_q_head),
+ cds_wfcq_head_cast_cpp(src_q_head),
struct __cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
struct __cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
- return __cds_wfcq_splice_nonblocking(cds_wfcq_head_cast(dest_q_head),
+ return __cds_wfcq_splice_nonblocking(cds_wfcq_head_cast_cpp(dest_q_head),
- __cds_wfcq_head_cast(src_q_head),
+ cds_wfcq_head_cast_cpp(src_q_head),
struct cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
struct cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
- return __cds_wfcq_splice_nonblocking(__cds_wfcq_head_cast(dest_q_head),
+ return __cds_wfcq_splice_nonblocking(cds_wfcq_head_cast_cpp(dest_q_head),
- cds_wfcq_head_cast(src_q_head),
+ cds_wfcq_head_cast_cpp(src_q_head),
struct cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
struct cds_wfcq_head *src_q_head,
struct cds_wfcq_tail *src_q_tail)
{
- return __cds_wfcq_splice_nonblocking(cds_wfcq_head_cast(dest_q_head),
+ return __cds_wfcq_splice_nonblocking(cds_wfcq_head_cast_cpp(dest_q_head),
- cds_wfcq_head_cast(src_q_head),
+ cds_wfcq_head_cast_cpp(src_q_head),
struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return __cds_wfcq_first_blocking(__cds_wfcq_head_cast(head), tail);
+ return __cds_wfcq_first_blocking(cds_wfcq_head_cast_cpp(head), tail);
}
static inline struct cds_wfcq_node *__cds_wfcq_first_blocking(
struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
}
static inline struct cds_wfcq_node *__cds_wfcq_first_blocking(
struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return __cds_wfcq_first_blocking(cds_wfcq_head_cast(head), tail);
+ return __cds_wfcq_first_blocking(cds_wfcq_head_cast_cpp(head), tail);
}
static inline struct cds_wfcq_node *__cds_wfcq_first_nonblocking(
struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
}
static inline struct cds_wfcq_node *__cds_wfcq_first_nonblocking(
struct __cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return __cds_wfcq_first_nonblocking(__cds_wfcq_head_cast(head), tail);
+ return __cds_wfcq_first_nonblocking(cds_wfcq_head_cast_cpp(head), tail);
}
static inline struct cds_wfcq_node *__cds_wfcq_first_nonblocking(
struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
}
static inline struct cds_wfcq_node *__cds_wfcq_first_nonblocking(
struct cds_wfcq_head *head,
struct cds_wfcq_tail *tail)
{
- return __cds_wfcq_first_nonblocking(cds_wfcq_head_cast(head), tail);
+ return __cds_wfcq_first_nonblocking(cds_wfcq_head_cast_cpp(head), tail);
}
static inline struct cds_wfcq_node *__cds_wfcq_next_blocking(
}
static inline struct cds_wfcq_node *__cds_wfcq_next_blocking(
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
- return __cds_wfcq_next_blocking(__cds_wfcq_head_cast(head), tail, node);
+ return __cds_wfcq_next_blocking(cds_wfcq_head_cast_cpp(head), tail, node);
}
static inline struct cds_wfcq_node *__cds_wfcq_next_blocking(
}
static inline struct cds_wfcq_node *__cds_wfcq_next_blocking(
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
- return __cds_wfcq_next_blocking(cds_wfcq_head_cast(head), tail, node);
+ return __cds_wfcq_next_blocking(cds_wfcq_head_cast_cpp(head), tail, node);
}
static inline struct cds_wfcq_node *__cds_wfcq_next_nonblocking(
}
static inline struct cds_wfcq_node *__cds_wfcq_next_nonblocking(
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
- return __cds_wfcq_next_nonblocking(__cds_wfcq_head_cast(head), tail, node);
+ return __cds_wfcq_next_nonblocking(cds_wfcq_head_cast_cpp(head), tail, node);
}
static inline struct cds_wfcq_node *__cds_wfcq_next_nonblocking(
}
static inline struct cds_wfcq_node *__cds_wfcq_next_nonblocking(
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
struct cds_wfcq_tail *tail,
struct cds_wfcq_node *node)
{
- return __cds_wfcq_next_nonblocking(cds_wfcq_head_cast(head), tail, node);
+ return __cds_wfcq_next_nonblocking(cds_wfcq_head_cast_cpp(head), tail, node);