X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fconfig%2Fconfig.h;h=2fed612a1cfbd5783891ec16e99808dc386e3645;hp=f840dd05d56d1665bdd1b89848ce2049a62ae743;hb=705bb62fac2a79ed3e04232cc831645c852cc1a2;hpb=dcf266c050443412ec370bf86ddb3fddd2809eb9 diff --git a/src/common/config/config.h b/src/common/config/config.h index f840dd05d..2fed612a1 100644 --- a/src/common/config/config.h +++ b/src/common/config/config.h @@ -19,6 +19,7 @@ #define _CONFIG_H #include +#include #include #include @@ -80,11 +81,14 @@ int config_parse_value(const char *value); * fd_output File to which the XML content must be written. The file will be * closed once the config_writer has been destroyed. * + * indent If other than 0 the XML will be pretty printed + * with indentation and newline. + * * Returns an instance of a configuration writer on success, NULL on * error. */ LTTNG_HIDDEN -struct config_writer *config_writer_create(int fd_output); +struct config_writer *config_writer_create(int fd_output, int indent); /* * Destroy an instance of a configuration writer. @@ -198,12 +202,13 @@ int config_writer_write_element_string(struct config_writer *writer, * sessions from path if NULL. * * override Override current session configuration if it exists. + * autoload Tell to load the auto session(s). * * 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); + int override, unsigned int autoload); #endif /* _CONFIG_H */