2 * Copyright (C) 2020 Simon Marchi <simon.marchi@efficios.com>
4 * SPDX-License-Identifier: GPL-2.0-only
8 #ifndef COMMON_SNAPSHOT_H
9 #define COMMON_SNAPSHOT_H
11 #include <common/macros.h>
14 #include <sys/types.h>
16 struct lttng_payload_view
;
18 struct lttng_snapshot_output
;
21 bool lttng_snapshot_output_validate(const struct lttng_snapshot_output
*output
);
24 bool lttng_snapshot_output_is_equal(
25 const struct lttng_snapshot_output
*a
,
26 const struct lttng_snapshot_output
*b
);
29 int lttng_snapshot_output_serialize(
30 const struct lttng_snapshot_output
*output
,
31 struct lttng_payload
*payload
);
34 ssize_t
lttng_snapshot_output_create_from_payload(
35 struct lttng_payload_view
*view
,
36 struct lttng_snapshot_output
**output_p
);
38 #endif /* COMMON_SNAPSHOT_H */
This page took 0.031116 seconds and 5 git commands to generate.