]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/slice.h
tree-wide: drop license boilerplate
[thirdparty/systemd.git] / src / core / slice.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 This file is part of systemd.
6
7 Copyright 2013 Lennart Poettering
8 ***/
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;