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