aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/cgroup.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/cgroup.hh')
-rw-r--r--src/libstore/cgroup.hh13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libstore/cgroup.hh b/src/libstore/cgroup.hh
new file mode 100644
index 000000000..c7b09398e
--- /dev/null
+++ b/src/libstore/cgroup.hh
@@ -0,0 +1,13 @@
+#pragma once
+
+#if __linux__
+
+#include "types.hh"
+
+namespace nix {
+
+void destroyCgroup(const Path & cgroup);
+
+}
+
+#endif