X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=include%2Furcu%2Flfstack.h;h=77af43bf18069df89619f85be6ac46178980de5c;hb=HEAD;hp=3b5034fc99a36a7433dfb90e12667028ec454f4c;hpb=3a602ac18a22ce6ab47040aaeaf2bca2dc30d20a;p=urcu.git diff --git a/include/urcu/lfstack.h b/include/urcu/lfstack.h index 3b5034f..2a3073d 100644 --- a/include/urcu/lfstack.h +++ b/include/urcu/lfstack.h @@ -1,26 +1,12 @@ +// SPDX-FileCopyrightText: 2010-2012 Mathieu Desnoyers +// +// SPDX-License-Identifier: LGPL-2.1-or-later + #ifndef _URCU_LFSTACK_H #define _URCU_LFSTACK_H /* - * lfstack.h - * * Userspace RCU library - Lock-Free Stack - * - * Copyright 2010-2012 - Mathieu Desnoyers - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifdef __cplusplus @@ -29,7 +15,6 @@ extern "C" { #include #include -#include /* * Lock-free stack. @@ -87,11 +72,26 @@ struct cds_lfs_stack { * * In C++, implement static inline wrappers using function overloading * to obtain an API similar to C. + * + * Avoid complaints from clang++ not knowing the transparent union + * attribute. */ +#if defined(__clang__) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wignored-attributes" +#endif typedef union { struct __cds_lfs_stack *_s; struct cds_lfs_stack *s; -} caa_c_transparent_union cds_lfs_stack_ptr_t; +} __attribute__((__transparent_union__)) cds_lfs_stack_ptr_t; + +typedef union { + const struct __cds_lfs_stack *_s; + const struct cds_lfs_stack *s; +} __attribute__((__transparent_union__)) cds_lfs_stack_const_ptr_t; +#if defined(__clang__) +#pragma clang diagnostic pop +#endif #ifdef _LGPL_SOURCE @@ -146,7 +146,7 @@ extern void __cds_lfs_init(struct __cds_lfs_stack *s); * * No memory barrier is issued. No mutual exclusion is required. */ -extern bool cds_lfs_empty(cds_lfs_stack_ptr_t s); +extern bool cds_lfs_empty(cds_lfs_stack_const_ptr_t s); /* * cds_lfs_push: push a node into the stack. @@ -281,44 +281,39 @@ static inline cds_lfs_stack_ptr_t cds_lfs_stack_cast(struct cds_lfs_stack *s) return ret; } -static inline bool cds_lfs_empty(struct __cds_lfs_stack *s) +static inline cds_lfs_stack_const_ptr_t cds_lfs_stack_const_cast(const struct __cds_lfs_stack *s) { - return cds_lfs_empty(cds_lfs_stack_cast(s)); + cds_lfs_stack_const_ptr_t ret = { + ._s = s, + }; + return ret; } -static inline bool cds_lfs_empty(struct cds_lfs_stack *s) +static inline cds_lfs_stack_const_ptr_t cds_lfs_stack_const_cast(const struct cds_lfs_stack *s) { - return cds_lfs_empty(cds_lfs_stack_cast(s)); + cds_lfs_stack_const_ptr_t ret = { + .s = s, + }; + return ret; } -static inline bool cds_lfs_push(struct __cds_lfs_stack *s, - struct cds_lfs_node *node) +template static inline bool cds_lfs_empty(T s) { - return cds_lfs_push(cds_lfs_stack_cast(s), node); + return cds_lfs_empty(cds_lfs_stack_const_cast(s)); } -static inline bool cds_lfs_push(struct cds_lfs_stack *s, +template static inline bool cds_lfs_push(T s, struct cds_lfs_node *node) { return cds_lfs_push(cds_lfs_stack_cast(s), node); } -static inline struct cds_lfs_node *__cds_lfs_pop(struct __cds_lfs_stack *s) +template static inline struct cds_lfs_node *__cds_lfs_pop(T s) { return __cds_lfs_pop(cds_lfs_stack_cast(s)); } -static inline struct cds_lfs_node *__cds_lfs_pop(struct cds_lfs_stack *s) -{ - return __cds_lfs_pop(cds_lfs_stack_cast(s)); -} - -static inline struct cds_lfs_head *__cds_lfs_pop_all(struct __cds_lfs_stack *s) -{ - return __cds_lfs_pop_all(cds_lfs_stack_cast(s)); -} - -static inline struct cds_lfs_head *__cds_lfs_pop_all(struct cds_lfs_stack *s) +template static inline struct cds_lfs_head *__cds_lfs_pop_all(T s) { return __cds_lfs_pop_all(cds_lfs_stack_cast(s)); }