Rename C++ header files to .hpp
[lttng-tools.git] / include / lttng / notification / notification-internal.hpp
diff --git a/include/lttng/notification/notification-internal.hpp b/include/lttng/notification/notification-internal.hpp
new file mode 100644 (file)
index 0000000..37c8f2a
--- /dev/null
@@ -0,0 +1,43 @@
+/*
+ * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ *
+ * SPDX-License-Identifier: LGPL-2.1-only
+ *
+ */
+
+#ifndef LTTNG_NOTIFICATION_INTERNAL_H
+#define LTTNG_NOTIFICATION_INTERNAL_H
+
+#include <lttng/notification/notification.h>
+#include <common/macros.hpp>
+#include <stdint.h>
+#include <stdbool.h>
+#include <sys/types.h>
+
+struct lttng_payload;
+struct lttng_payload_view;
+
+struct lttng_notification {
+       struct lttng_trigger *trigger;
+       struct lttng_evaluation *evaluation;
+};
+
+struct lttng_notification_comm {
+       /* Size of the payload following this field. */
+       uint32_t length;
+       /* Trigger and evaluation objects follow. */
+       char payload[];
+} LTTNG_PACKED;
+
+struct lttng_notification *lttng_notification_create(
+               struct lttng_trigger *trigger,
+               struct lttng_evaluation *evaluation);
+
+int lttng_notification_serialize(const struct lttng_notification *notification,
+               struct lttng_payload *payload);
+
+ssize_t lttng_notification_create_from_payload(
+               struct lttng_payload_view *view,
+               struct lttng_notification **notification);
+
+#endif /* LTTNG_NOTIFICATION_INTERNAL_H */
This page took 0.022781 seconds and 4 git commands to generate.