X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=cgroup.h;h=68ecfcd40ae466a7f455e07c04635b09b7a012ed;hp=65fa3ad128ce5d036d74a0f9ca5e80f26deb3c1b;hb=09a324028d68c485a8c4b33257b262123c27394f;hpb=a696fa2a9c2e21a1c88813235d6fc39d267f6155 diff --git a/cgroup.h b/cgroup.h index 65fa3ad1..68ecfcd4 100644 --- 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) +{ +} + +void cgroup_kill(struct flist_head *list) { }