Better support for setting up and removing private cgroups
[fio.git] / cgroup.h
index 65fa3ad128ce5d036d74a0f9ca5e80f26deb3c1b..1c67ba80ab36ee1e67f9b454e3d9ed8d62875e53 100644 (file)
--- a/cgroup.h
+++ b/cgroup.h
@@ -6,6 +6,8 @@
 int cgroup_setup(struct thread_data *td);
 void cgroup_shutdown(struct thread_data *td);
 
+void cgroup_kill(void);
+
 #else
 
 static inline int cgroup_setup(struct thread_data *td)
@@ -18,5 +20,9 @@ static inline void cgroup_shutdown(struct thread_data *td)
 {
 }
 
+void cgroup_kill(void)
+{
+}
+
 #endif
 #endif