]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/slice.h
tree-wide: drop license boilerplate
[thirdparty/systemd.git] / src / core / slice.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
a016b922
LP
2#pragma once
3
4/***
5 This file is part of systemd.
6
7 Copyright 2013 Lennart Poettering
a016b922
LP
8***/
9
10typedef struct Slice Slice;
11
a016b922
LP
12struct Slice {
13 Unit meta;
14
15 SliceState state, deserialized_state;
4ad49000
LP
16
17 CGroupContext cgroup_context;
a016b922
LP
18};
19
20extern const UnitVTable slice_vtable;