summaryrefslogtreecommitdiff
path: root/src/cgroup.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-11-17 21:27:53 +0100
committerLennart Poettering <lennart@poettering.net>2010-11-17 21:27:53 +0100
commitd686d8a97bd7945af0a61504392d01a3167b576f (patch)
tree76353a8e60d353e1f42b375c8493ffa5873068aa /src/cgroup.h
parent74fe1fe36e35a26d764f1e3119d5f6d014db573c (diff)
cgroup: by default, duplicate service cgroup in the cpu hierarchy
Diffstat (limited to 'src/cgroup.h')
-rw-r--r--src/cgroup.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/cgroup.h b/src/cgroup.h
index d6d5c86f10..89854ff34e 100644
--- a/src/cgroup.h
+++ b/src/cgroup.h
@@ -39,11 +39,12 @@ struct CGroupBonding {
/* For the Manager::cgroup_bondings hashmap */
LIST_FIELDS(CGroupBonding, by_path);
- /* When shutting down, remove cgroup? */
- bool clean_up:1;
+ /* When shutting down, remove cgroup? Are our own tasks the
+ * only ones in this group?*/
+ bool ours:1;
- /* When our tasks are the only ones in this group */
- bool only_us:1;
+ /* If we cannot create this group, or add a process to it, is this fatal? */
+ bool essential:1;
/* This cgroup is realized */
bool realized:1;