liblttng-ctl: use export list to define exported symbols
[lttng-tools.git] / include / lttng / action / stop-session-internal.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 2019 Simon Marchi <simon.marchi@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8#ifndef LTTNG_ACTION_STOP_SESSION_INTERNAL_H
9#define LTTNG_ACTION_STOP_SESSION_INTERNAL_H
10
11#include <common/macros.h>
12
13struct lttng_action;
14struct lttng_payload_view;
15
16/*
17 * Create a "stop session" action from a payload view.
18 *
19 * On success, return the number of bytes consumed from `view`, and the created
20 * action in `*action`. On failure, return -1.
21 */
22extern ssize_t lttng_action_stop_session_create_from_payload(
23 struct lttng_payload_view *view,
24 struct lttng_action **action);
25
26#endif /* LTTNG_ACTION_STOP_SESSION_INTERNAL_H */
This page took 0.022998 seconds and 4 git commands to generate.