1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#ifndef FIO_CGROUP_H
#define FIO_CGROUP_H
#ifdef FIO_HAVE_CGROUPS
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, struct flist_head *list,
char **mnt)
{
td_verror(td, EINVAL, "cgroup_setup");
return 1;
}
static inline void cgroup_shutdown(struct thread_data *td, char **mnt)
{
}
static inline void cgroup_kill(struct flist_head *list)
{
}
#endif
#endif
|