solaris: fix compile error on ctime_r()
[fio.git] / cgroup.h
index 65fa3ad128ce5d036d74a0f9ca5e80f26deb3c1b..0bbe25a2cb79f720d843113c8ca07a3c002ac40f 100644 (file)
--- a/cgroup.h
+++ b/cgroup.h
@@ -3,18 +3,25 @@
 
 #ifdef FIO_HAVE_CGROUPS
 
-int cgroup_setup(struct thread_data *td);
-void cgroup_shutdown(struct thread_data *td);
+int cgroup_setup(struct thread_data *, struct flist_head *, char **);
+void cgroup_shutdown(struct thread_data *, char **);
+
+void cgroup_kill(struct flist_head *list);
 
 #else
 
-static inline int cgroup_setup(struct thread_data *td)
+static inline int cgroup_setup(struct thread_data *td, struct flist_head *list,
+                              char **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, char **mnt)
+{
+}
+
+static inline void cgroup_kill(struct flist_head *list)
 {
 }