include: implement REUSE with SPDX identifiers
[lttng-ust.git] / include / lttng / ust-common.h
CommitLineData
1c196845
MJ
1// SPDX-FileCopyrightText: 2021 Michael Jeanson <mjeanson@efficios.com>
2//
3// SPDX-License-Identifier: MIT
4
fca97dfd 5/*
fca97dfd
MJ
6 * Public symbols of liblttng-ust-common.so
7 */
8
9#ifndef _LTTNG_UST_COMMON_H
10#define _LTTNG_UST_COMMON_H
11
12/*
13 * The liblttng-ust-common constructor is public so it can be called in the
14 * constructors of client libraries since there is no reliable way to guarantee
15 * the execution order of constructors across shared library.
16 */
17void lttng_ust_common_ctor(void)
18 __attribute__((constructor));
19
cf914d16
MJ
20void lttng_ust_common_alloc_tls(void);
21
fca97dfd 22#endif
This page took 0.026588 seconds and 4 git commands to generate.