Clean-up: run format-cpp on the tree
[lttng-tools.git] / include / lttng / action / stop-session.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_H
9#define LTTNG_ACTION_STOP_SESSION_H
10
11#include <lttng/lttng-export.h>
12
13struct lttng_action;
14struct lttng_rate_policy;
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20/*
21 * Create a newly allocated stop-session action object.
22 *
23 * A stop session action object must have a session name set to be considered
24 * valid when used with a trigger object (lttng_trigger). A name can be set
25 * using `lttng_action_stop_session_set_session_name`.
26 *
27 * Returns a new action on success, NULL on failure. This action must be
28 * destroyed using lttng_action_destroy().
29 */
30LTTNG_EXPORT extern struct lttng_action *lttng_action_stop_session_create(void);
31
32/*
33 * Set the session name of an lttng_action object of type
34 * LTTNG_ACTION_TYPE_STOP_SESSION.
35 */
36LTTNG_EXPORT extern enum lttng_action_status
37lttng_action_stop_session_set_session_name(struct lttng_action *action, const char *session_name);
38
39/*
40 * Get the session name of an lttng_action object of type
41 * LTTNG_ACTION_TYPE_STOP_SESSION.
42 */
43LTTNG_EXPORT extern enum lttng_action_status
44lttng_action_stop_session_get_session_name(const struct lttng_action *action,
45 const char **session_name);
46
47/*
48 * Set the rate policy of a stop session action.
49 *
50 * Returns LTTNG_ACTION_STATUS_OK on success,
51 * LTTNG_ACTION_STATUS_ERROR on internal error,
52 * LTTNG_ACTION_STATUS_INVALID if invalid parameters are passed.
53 */
54LTTNG_EXPORT extern enum lttng_action_status
55lttng_action_stop_session_set_rate_policy(struct lttng_action *action,
56 const struct lttng_rate_policy *policy);
57
58/*
59 * Get the rate policy of a stop session action.
60 *
61 * Returns LTTNG_ACTION_STATUS_OK on success,
62 * LTTNG_ACTION_STATUS_INVALID if invalid parameters are passed.
63 */
64LTTNG_EXPORT extern enum lttng_action_status
65lttng_action_stop_session_get_rate_policy(const struct lttng_action *action,
66 const struct lttng_rate_policy **policy);
67
68#ifdef __cplusplus
69}
70#endif
71
72#endif /* LTTNG_ACTION_STOP_SESSION_H */
This page took 0.048947 seconds and 4 git commands to generate.