Rename C++ header files to .hpp
[lttng-tools.git] / include / lttng / notification / notification-internal.h
diff --git a/include/lttng/notification/notification-internal.h b/include/lttng/notification/notification-internal.h
deleted file mode 100644 (file)
index 7e601b0..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * 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.h>
-#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.025028 seconds and 4 git commands to generate.