X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fwaiter.h;h=30b51ee803b4e1f61efced2d700cbc74265f44a8;hp=30eb38f835398288e0ec42a18d001021f27720da;hb=3afa94aeca5a0daae40fd7b6cc96b7e4c150c7d8;hpb=287a512f2b868c16132b894a8143a5faf0379ca8 diff --git a/src/common/waiter.h b/src/common/waiter.h index 30eb38f83..30b51ee80 100644 --- a/src/common/waiter.h +++ b/src/common/waiter.h @@ -1,19 +1,8 @@ /* - * Copyright (C) 2012 - Mathieu Desnoyers - * 2017 - Jérémie Galarneau + * Copyright (C) 2012 Mathieu Desnoyers + * Copyright (C) 2017 Jérémie Galarneau * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License, version 2.1 only, - * as published by the Free Software Foundation. - * - * This program 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 program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * SPDX-License-Identifier: LGPL-2.1-only * * This code is originally adapted from userspace-rcu's urcu-wait.h */ @@ -28,15 +17,17 @@ #include #include "macros.h" +#ifdef __cplusplus +extern "C" { +#endif + struct lttng_waiter { struct cds_wfs_node wait_queue_node; int32_t state; }; -LTTNG_HIDDEN void lttng_waiter_init(struct lttng_waiter *waiter); -LTTNG_HIDDEN void lttng_waiter_wait(struct lttng_waiter *waiter); /* @@ -44,7 +35,10 @@ void lttng_waiter_wait(struct lttng_waiter *waiter); * It is invalid for multiple "wake" operations to be invoked * on a single waiter without re-initializing it before. */ -LTTNG_HIDDEN void lttng_waiter_wake_up(struct lttng_waiter *waiter); +#ifdef __cplusplus +} +#endif + #endif /* LTTNG_WAITER_H */