Rotate command
[lttng-tools.git] / include / lttng / rotate-internal.h
CommitLineData
5c408ad8
JD
1/*
2 * Copyright (C) 2017 - Julien Desfossez <jdesfossez@efficios.com>
3 *
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
7 *
8 * This library is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
11 * for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17
18#ifndef LTTNG_ROTATE_INTERNAL_ABI_H
19#define LTTNG_ROTATE_INTERNAL_ABI_H
20
21#include <limits.h>
22#include <stdint.h>
23
24#include <lttng/constant.h>
25#include <lttng/rotation.h>
26#include <common/macros.h>
27
28/*
29 * Internal objects between lttng-ctl and the session daemon, the values
30 * are then copied to the user's lttng_rotate_session_handle object.
31 */
32/* For the LTTNG_ROTATE_SESSION command. */
33struct lttng_rotate_session_return {
34 uint64_t rotate_id;
35 /* Represents values defined in enum lttng_rotation_status. */
36 int32_t status;
37} LTTNG_PACKED;
38
39#endif /* LTTNG_ROTATE_INTERNAL_ABI_H */
This page took 0.025181 seconds and 5 git commands to generate.