Fix: possible null dereference
[lttng-tools.git] / src / bin / lttng / conf.h
CommitLineData
beb8c75a 1/*
ab5be9fa 2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
beb8c75a 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
beb8c75a 5 *
beb8c75a
DG
6 */
7
8#ifndef _LTTNG_CONFIG_H
9#define _LTTNG_CONFIG_H
10
58a97671 11#define CONFIG_FILENAME ".lttngrc"
beb8c75a 12
9b27c721 13void config_destroy(const char *path);
d6a07e7d
FG
14void config_destroy_default(void);
15int config_exists(const char *path);
9b27c721
JG
16int config_init(const char *path);
17int config_add_session_name(const char *path, const char *name);
beb8c75a
DG
18
19/* Must free() the return pointer */
9b27c721
JG
20char *config_read_session_name(const char *path);
21char *config_read_session_name_quiet(const char *path);
22char *config_get_file_path(const char *path);
beb8c75a
DG
23
24#endif /* _LTTNG_CONFIG_H */
This page took 0.049078 seconds and 4 git commands to generate.