1 Star 0 Fork 1

492973555/fio

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cgroup.h 674 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jens Axboe 提交于 2018-06-29 08:00 . Fix compilation without cgroups
#ifndef FIO_CGROUP_H
#define FIO_CGROUP_H
#ifdef FIO_HAVE_CGROUPS
struct cgroup_mnt {
char *path;
bool cgroup2;
};
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
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, struct cgroup_mnt *mnt)
{
}
static inline void cgroup_kill(struct flist_head *list)
{
}
#endif
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/qq492973555/fio.git
[email protected]:qq492973555/fio.git
qq492973555
fio
fio
master

搜索帮助