X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=cgroup.h;h=0bbe25a2cb79f720d843113c8ca07a3c002ac40f;hp=1c67ba80ab36ee1e67f9b454e3d9ed8d62875e53;hb=62cb17de316e5aa755228fef8ce19b5f5353a3cf;hpb=39f22027248f658ade599e89c2fe6afae02ac9d7 diff --git a/cgroup.h b/cgroup.h index 1c67ba80..0bbe25a2 100644 --- a/cgroup.h +++ b/cgroup.h @@ -3,24 +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(void); +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(void) +static inline void cgroup_kill(struct flist_head *list) { }