X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Fnotification%2Fnotification-internal.h;fp=include%2Flttng%2Fnotification%2Fnotification-internal.h;h=0000000000000000000000000000000000000000;hp=7e601b0c7de82d5340b8686c932bff42e6b5b63d;hb=c9e313bc594f40a86eed237dce222c0fc99c957f;hpb=4878de5c7deb512bbdac4fdfc498907efa06fb7c diff --git a/include/lttng/notification/notification-internal.h b/include/lttng/notification/notification-internal.h deleted file mode 100644 index 7e601b0c7..000000000 --- a/include/lttng/notification/notification-internal.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (C) 2017 Jérémie Galarneau - * - * SPDX-License-Identifier: LGPL-2.1-only - * - */ - -#ifndef LTTNG_NOTIFICATION_INTERNAL_H -#define LTTNG_NOTIFICATION_INTERNAL_H - -#include -#include -#include -#include -#include - -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 */