Fix: automatic enum value overwrites existing error code value
[lttng-tools.git] / include / lttng / save-internal.h
index f4a56f8667f878805db888cb1ca47be81aef47d1..c5feb4af47113e2ea113b5a1f180a1b0b178fe52 100644 (file)
@@ -21,6 +21,7 @@
 #include <limits.h>
 #include <stdint.h>
 
+#include <lttng/constant.h>
 #include <common/macros.h>
 
 /*
  */
 struct lttng_save_session_attr {
        /* Name of the session to save, empty string means all. */
-       char session_name[NAME_MAX];
+       char session_name[LTTNG_NAME_MAX];
        /* Destination of the session configuration. See lttng(1) for URL format. */
        char configuration_url[PATH_MAX];
        /* Overwrite the session configuration file if it exists. */
-       uint32_t overwrite;
+       uint8_t overwrite;
+       /* Omit the sessions' name(s). */
+       uint8_t omit_name;
+       /* Omit the sessions' output(s). */
+       uint8_t omit_output;
 } LTTNG_PACKED;
 
 #endif /* LTTNG_SAVE_INTERNAL_ABI_H */
This page took 0.024878 seconds and 5 git commands to generate.