加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
filetop.h 452 Bytes
一键复制 编辑 原始数据 按行查看 历史
/* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
#ifndef __FILETOP_H
#define __FILETOP_H
#define PATH_MAX 4096
#define TASK_COMM_LEN 16
enum op {
READ,
WRITE,
};
struct file_id {
__u64 inode;
__u32 dev;
__u32 pid;
__u32 tid;
};
struct file_stat {
__u64 reads;
__u64 read_bytes;
__u64 writes;
__u64 write_bytes;
__u32 pid;
__u32 tid;
char filename[PATH_MAX];
char comm[TASK_COMM_LEN];
char type;
};
#endif /* __FILETOP_H */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化