diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-11-18 10:39:28 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-11-18 10:39:28 +0100 |
commit | 128910ba23f586ba1765a137ecff23cfd22cff89 (patch) | |
tree | 2adc969d5ae2fa2f470000e9bbc7b8f8b0c3edd4 /src/libutil/experimental-features.hh | |
parent | f1ab082ac4f589a36a9eb0cd98d1cc235eedc419 (diff) |
Separate cgroup support from auto-uid-allocation
The new experimental feature 'cgroups' enables the use of cgroups for
all builds. This allows better containment and enables setting
resource limits and getting some build stats.
Diffstat (limited to 'src/libutil/experimental-features.hh')
-rw-r--r-- | src/libutil/experimental-features.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/experimental-features.hh b/src/libutil/experimental-features.hh index cf0c06eac..af775feb0 100644 --- a/src/libutil/experimental-features.hh +++ b/src/libutil/experimental-features.hh @@ -24,6 +24,7 @@ enum struct ExperimentalFeature FetchClosure, ReplFlake, AutoAllocateUids, + Cgroups, }; /** |