]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/slice.h
core: align table
[thirdparty/systemd.git] / src / core / slice.h
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3
4 #include "unit.h"
5
6 typedef struct Slice Slice;
7
8 struct Slice {
9 Unit meta;
10
11 SliceState state, deserialized_state;
12
13 CGroupContext cgroup_context;
14
15 CGroupRuntime *cgroup_runtime;
16 };
17
18 extern const UnitVTable slice_vtable;
19
20 DEFINE_CAST(SLICE, Slice);