2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
4 * SPDX-License-Identifier: GPL-2.0-only
8 #ifndef _LTTNG_CONFIG_H
9 #define _LTTNG_CONFIG_H
11 #define CONFIG_FILENAME ".lttngrc"
13 void config_destroy(const char *path
);
14 void config_destroy_default(void);
15 int config_exists(const char *path
);
16 int config_init(const char *path
);
17 int config_add_session_name(const char *path
, const char *name
);
19 /* Must free() the return pointer */
20 char *config_read_session_name(const char *path
);
21 char *config_read_session_name_quiet(const char *path
);
22 char *config_get_file_path(const char *path
);
24 #endif /* _LTTNG_CONFIG_H */
This page took 0.03342 seconds and 4 git commands to generate.