Build fix: missing cstdint include in futex.hpp
[lttng-tools.git] / src / common / futex.hpp
... / ...
CommitLineData
1/*
2 * Copyright (C) 2011 EfficiOS Inc.
3 * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0-only
6 *
7 */
8
9#ifndef _LTT_FUTEX_H
10#define _LTT_FUTEX_H
11
12#include <cstdint>
13
14void futex_wait_update(int32_t *futex, int active);
15void futex_nto1_prepare(int32_t *futex);
16void futex_nto1_wait(int32_t *futex);
17void futex_nto1_wake(int32_t *futex);
18
19#endif /* _LTT_FUTEX_H */
This page took 0.021685 seconds and 4 git commands to generate.