X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fconfig%2Fconfig.h;h=f840dd05d56d1665bdd1b89848ce2049a62ae743;hp=f5ca42485d371887eb86ed59460ff9e765b26b1b;hb=dcf266c050443412ec370bf86ddb3fddd2809eb9;hpb=c864d6d788c58de94111911a9e10d221ec8bc398 diff --git a/src/common/config/config.h b/src/common/config/config.h index f5ca42485..f840dd05d 100644 --- a/src/common/config/config.h +++ b/src/common/config/config.h @@ -185,4 +185,25 @@ LTTNG_HIDDEN int config_writer_write_element_string(struct config_writer *writer, const char *element_name, const char *value); +/* + * Load session configurations from a file. + * + * path Path to an LTTng session configuration file. All *.lttng files + * will be loaded if path is a directory. If path is NULL, the default + * paths will be searched in the following order: + * 1) $HOME/.lttng/sessions + * 2) /etc/lttng/sessions + * + * session_name Name of the session to load. Will load all + * sessions from path if NULL. + * + * override Override current session configuration if it exists. + * + * Returns zero if the session could be loaded successfully. Returns + * a negative LTTNG_ERR code on error. + */ +LTTNG_HIDDEN +int config_load_session(const char *path, const char *session_name, + int override); + #endif /* _CONFIG_H */