Line data Source code
1 : /* SPDX-License-Identifier: LGPL-2.1+ */ 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 : 16 : extern const UnitVTable slice_vtable; 17 : 18 926 : DEFINE_CAST(SLICE, Slice);