diff options
Diffstat (limited to 'src/manager.h')
-rw-r--r-- | src/manager.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/manager.h b/src/manager.h index 405f143566..762a891ca6 100644 --- a/src/manager.h +++ b/src/manager.h @@ -167,12 +167,17 @@ struct Manager { /* Data specific to the cgroup subsystem */ Hashmap *cgroup_bondings; /* path string => CGroupBonding object 1:n */ char *cgroup_controller; + char *cgroup_mount_point; char *cgroup_hierarchy; usec_t gc_queue_timestamp; int gc_marker; unsigned n_in_gc_queue; + /* Make sure the user cannot accidentaly unmount our cgroup + * file system */ + int pin_cgroupfs_fd; + /* Flags */ ManagerRunningAs running_as; ManagerExitCode exit_code:4; |