ust registry: Refactor representation of nested types
[lttng-tools.git] / src / common / notify.c
... / ...
CommitLineData
1/*
2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8#include <lttng/action/action-internal.h>
9#include <lttng/action/notify-internal.h>
10#include <common/macros.h>
11#include <assert.h>
12
13static
14void lttng_action_notify_destroy(struct lttng_action *action)
15{
16 free(action);
17}
18
19static
20int lttng_action_notify_serialize(struct lttng_action *action,
21 struct lttng_dynamic_buffer *buf)
22{
23 return 0;
24}
25
26struct lttng_action *lttng_action_notify_create(void)
27{
28 struct lttng_action_notify *notify;
29
30 notify = zmalloc(sizeof(struct lttng_action_notify));
31 if (!notify) {
32 goto end;
33 }
34
35 notify->parent.type = LTTNG_ACTION_TYPE_NOTIFY;
36 notify->parent.serialize = lttng_action_notify_serialize;
37 notify->parent.destroy = lttng_action_notify_destroy;
38end:
39 return &notify->parent;
40}
This page took 0.022488 seconds and 4 git commands to generate.