configure: attempt to link against tcmalloc by default if available
[fio.git] / cgroup.h
index 1c67ba80ab36ee1e67f9b454e3d9ed8d62875e53..10313b7dbccf1e43f83016dc444856fc0dc7815a 100644 (file)
--- a/cgroup.h
+++ b/cgroup.h
@@ -3,24 +3,32 @@
 
 #ifdef FIO_HAVE_CGROUPS
 
-int cgroup_setup(struct thread_data *td);
-void cgroup_shutdown(struct thread_data *td);
+struct cgroup_mnt {
+       char *path;
+       bool cgroup2;
+};
 
-void cgroup_kill(void);
+int cgroup_setup(struct thread_data *, struct flist_head *, struct cgroup_mnt **);
+void cgroup_shutdown(struct thread_data *, struct cgroup_mnt *);
+
+void cgroup_kill(struct flist_head *list);
 
 #else
 
-static inline int cgroup_setup(struct thread_data *td)
+struct cgroup_mnt;
+
+static inline int cgroup_setup(struct thread_data *td, struct flist_head *list,
+                              struct cgroup_mnt **mnt)
 {
        td_verror(td, EINVAL, "cgroup_setup");
        return 1;
 }
 
-static inline void cgroup_shutdown(struct thread_data *td)
+static inline void cgroup_shutdown(struct thread_data *td, struct cgroup_mnt *mnt)
 {
 }
 
-void cgroup_kill(void)
+static inline void cgroup_kill(struct flist_head *list)
 {
 }