| 1 | /* |
| 2 | * Copyright (C) 2011 EfficiOS Inc. |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0-only |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef _LTTNG_CONFIG_H |
| 9 | #define _LTTNG_CONFIG_H |
| 10 | |
| 11 | #define CONFIG_FILENAME ".lttngrc" |
| 12 | |
| 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); |
| 18 | |
| 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); |
| 23 | |
| 24 | #endif /* _LTTNG_CONFIG_H */ |