Check for C++11 when building C++ probe providers
[lttng-ust.git] / src / common / getenv.h
CommitLineData
730bf2af 1/*
c0c0989a 2 * SPDX-License-Identifier: LGPL-2.1-only
730bf2af 3 *
c0c0989a 4 * Copyright (C) 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
730bf2af
MD
5 */
6
910dcd72
MJ
7#ifndef _UST_COMMON_GETENV_H
8#define _UST_COMMON_GETENV_H
c0c0989a 9
6f626d28 10/*
4c41b460
MJ
11 * Always add the lttng-ust environment variables using the lttng_ust_getenv()
12 * infrastructure rather than using getenv() directly. This ensures that we
13 * don't trigger races between getenv() invoked by lttng-ust listener threads
14 * invoked concurrently with setenv() called by an otherwise single-threaded
15 * application thread. (the application is not aware that it runs with
16 * lttng-ust)
6f626d28 17 */
730bf2af 18
1d18d519
MJ
19char *lttng_ust_getenv(const char *name)
20 __attribute__((visibility("hidden")));
730bf2af 21
910dcd72
MJ
22
23/*
24 * Initialize the internal filtered list of environment variables.
25 */
1d18d519
MJ
26void lttng_ust_getenv_init(void)
27 __attribute__((visibility("hidden")));
730bf2af 28
910dcd72 29#endif /* _UST_COMMON_GETENV_H */
This page took 0.030477 seconds and 4 git commands to generate.