2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_NOTIFICATION_INTERNAL_H
9 #define LTTNG_NOTIFICATION_INTERNAL_H
11 #include <lttng/notification/notification.h>
12 #include <common/macros.h>
15 #include <sys/types.h>
22 struct lttng_payload_view
;
24 struct lttng_notification
{
25 struct lttng_trigger
*trigger
;
26 struct lttng_evaluation
*evaluation
;
29 struct lttng_notification_comm
{
30 /* Size of the payload following this field. */
32 /* Trigger and evaluation objects follow. */
36 struct lttng_notification
*lttng_notification_create(
37 struct lttng_trigger
*trigger
,
38 struct lttng_evaluation
*evaluation
);
40 int lttng_notification_serialize(const struct lttng_notification
*notification
,
41 struct lttng_payload
*payload
);
43 ssize_t
lttng_notification_create_from_payload(
44 struct lttng_payload_view
*view
,
45 struct lttng_notification
**notification
);
51 #endif /* LTTNG_NOTIFICATION_INTERNAL_H */
This page took 0.03214 seconds and 5 git commands to generate.