X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Fsave.h;fp=include%2Flttng%2Fsave.h;h=6120467a78ffa7ac5f6d1ef8f2920a069eff617c;hp=d28fdffcdc062c4b77596f7f5ed0e2e931a72de0;hb=28f23191dcbf047429d51950a337a57d7a3f866a;hpb=f250b40e2179eccdb83766bf4abef5a35036c47b diff --git a/include/lttng/save.h b/include/lttng/save.h index d28fdffcd..6120467a7 100644 --- a/include/lttng/save.h +++ b/include/lttng/save.h @@ -30,39 +30,36 @@ LTTNG_EXPORT extern struct lttng_save_session_attr *lttng_save_session_attr_crea */ LTTNG_EXPORT extern void lttng_save_session_attr_destroy(struct lttng_save_session_attr *output); - /* * Save session attribute getter family functions. */ /* Return session name. NULL indicated all sessions must be saved. */ -LTTNG_EXPORT extern const char *lttng_save_session_attr_get_session_name( - struct lttng_save_session_attr *attr); +LTTNG_EXPORT extern const char * +lttng_save_session_attr_get_session_name(struct lttng_save_session_attr *attr); /* * Return destination URL. A NULL value indicates the default session * configuration location. The URL format used is documented in lttng(1). * NULL indicates that the default session configuration path is used. */ -LTTNG_EXPORT extern const char *lttng_save_session_attr_get_output_url( - struct lttng_save_session_attr *attr); +LTTNG_EXPORT extern const char * +lttng_save_session_attr_get_output_url(struct lttng_save_session_attr *attr); /* * Return the configuration overwrite attribute. This attribute indicates * whether or not existing configuration files must be overwritten. */ -LTTNG_EXPORT extern int lttng_save_session_attr_get_overwrite( - struct lttng_save_session_attr *attr); +LTTNG_EXPORT extern int lttng_save_session_attr_get_overwrite(struct lttng_save_session_attr *attr); /* * Return the omit name configuration attribute. This attribute indicates * whether or not the saved sessions' names should be omitted. */ -LTTNG_EXPORT extern int lttng_save_session_attr_get_omit_name( - struct lttng_save_session_attr *attr); +LTTNG_EXPORT extern int lttng_save_session_attr_get_omit_name(struct lttng_save_session_attr *attr); /* * Return the omit output configuration attribute. This attribute indicates * whether or not the saved sessions' output configuration should be omitted. */ -LTTNG_EXPORT extern int lttng_save_session_attr_get_omit_output( - struct lttng_save_session_attr *attr); +LTTNG_EXPORT extern int +lttng_save_session_attr_get_omit_output(struct lttng_save_session_attr *attr); /* * Save session attribute setter family functions. @@ -75,33 +72,34 @@ LTTNG_EXPORT extern int lttng_save_session_attr_get_omit_output( * Set the name of the session to save. A NULL name means all sessions * known to the session daemon will be saved. */ -LTTNG_EXPORT extern int lttng_save_session_attr_set_session_name( - struct lttng_save_session_attr *attr, const char *session_name); +LTTNG_EXPORT extern int +lttng_save_session_attr_set_session_name(struct lttng_save_session_attr *attr, + const char *session_name); /* * Set the URL of the session configuration to save. A NULL value indicates the * use of the default location being the session one. The URL's format is is * documented in lttng(1). */ -LTTNG_EXPORT extern int lttng_save_session_attr_set_output_url( - struct lttng_save_session_attr *attr, const char *url); +LTTNG_EXPORT extern int lttng_save_session_attr_set_output_url(struct lttng_save_session_attr *attr, + const char *url); /* * Set the overwrite attribute. If set to true, files of the same name as the * current session configuration URL will be overwritten. */ -LTTNG_EXPORT extern int lttng_save_session_attr_set_overwrite( - struct lttng_save_session_attr *attr, int overwrite); +LTTNG_EXPORT extern int lttng_save_session_attr_set_overwrite(struct lttng_save_session_attr *attr, + int overwrite); /* * Set the omit name attribute. If set to true, the sessions' names are omitted * from the resulting session configuration file. */ -LTTNG_EXPORT extern int lttng_save_session_attr_set_omit_name( - struct lttng_save_session_attr *attr, int omit_name); +LTTNG_EXPORT extern int lttng_save_session_attr_set_omit_name(struct lttng_save_session_attr *attr, + int omit_name); /* * Set the omit output attribute. If set to true, the sessions' output * configurations are omitted from the resulting session configuration file. */ -LTTNG_EXPORT extern int lttng_save_session_attr_set_omit_output( - struct lttng_save_session_attr *attr, int omit_output); +LTTNG_EXPORT extern int +lttng_save_session_attr_set_omit_output(struct lttng_save_session_attr *attr, int omit_output); /* * Save session configuration(s).