Rename C++ header files to .hpp
[lttng-tools.git] / include / lttng / save-internal.hpp
diff --git a/include/lttng/save-internal.hpp b/include/lttng/save-internal.hpp
new file mode 100644 (file)
index 0000000..6b2bb94
--- /dev/null
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2013 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ *
+ * SPDX-License-Identifier: LGPL-2.1-only
+ *
+ */
+
+#ifndef LTTNG_SAVE_INTERNAL_ABI_H
+#define LTTNG_SAVE_INTERNAL_ABI_H
+
+#include <limits.h>
+#include <stdint.h>
+
+#include <lttng/constant.h>
+#include <common/macros.hpp>
+
+/*
+ * Object used by the save_session API. This is opaque to the public library.
+ */
+struct lttng_save_session_attr {
+       /* Name of the session to save, empty string means all. */
+       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. */
+       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.023405 seconds and 4 git commands to generate.