Ai
3 Star 2 Fork 0

Gitee 极速下载/hyperkit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/docker/hyperkit
克隆/下载
block-trace.d 491 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/sbin/dtrace -C -s
/*
* block-trace.d - Trace all block device accesses
*
* USAGE: sudo block-trace.d -p <pid of hyperkit>
*/
#pragma D option quiet
dtrace:::BEGIN
{
printf("Tracing... Hit Ctrl-C to end.\n");
printf("%13s %-15s Arguments\n", "Time(us)", "Function")
}
hyperkit$target:::block-preadv,
hyperkit$target:::block-pwritev,
hyperkit$target:::block-delete
{
printf("%13d %-15s %#016x %#016x\n", timestamp/1000, probefunc, arg0, arg1)
}
dtrace:::END
{
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C/C++
1
https://gitee.com/mirrors/hyperkit.git
git@gitee.com:mirrors/hyperkit.git
mirrors
hyperkit
hyperkit
master

搜索帮助