liblttng-ctl: use lttng_payload for serialize/create_from_buffer
[lttng-tools.git] / include / lttng / notification / notification-internal.h
index c50536dc6eafa399bb3350a75add68b3257007dc..a4b0eec2eb9baa50fcbbccbb99bf126502cccc41 100644 (file)
 
 #include <lttng/notification/notification.h>
 #include <common/macros.h>
-#include <common/buffer-view.h>
-#include <common/dynamic-buffer.h>
 #include <stdint.h>
 #include <stdbool.h>
 #include <sys/types.h>
 
+struct lttng_payload;
+struct lttng_payload_view;
+
 struct lttng_notification {
        struct lttng_condition *condition;
        struct lttng_evaluation *evaluation;
@@ -35,11 +36,11 @@ struct lttng_notification *lttng_notification_create(
 
 LTTNG_HIDDEN
 int lttng_notification_serialize(const struct lttng_notification *notification,
-               struct lttng_dynamic_buffer *buf);
+               struct lttng_payload *payload);
 
 LTTNG_HIDDEN
-ssize_t lttng_notification_create_from_buffer(
-               const struct lttng_buffer_view *view,
+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.024063 seconds and 5 git commands to generate.