加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
perldtrace.d 491 Bytes
一键复制 编辑 原始数据 按行查看 历史
openKylinBot 提交于 2022-05-14 02:40 . Import Upstream version 5.30.0
/*
* Written by Alan Burlinson -- taken from his blog post
* at <http://bleaklow.com/2005/09/09/dtrace_and_perl.html>.
*/
provider perl {
probe sub__entry(const char *, const char *, int, const char *);
probe sub__return(const char *, const char *, int, const char *);
probe phase__change(const char *, const char *);
probe op__entry(const char *);
probe loading__file(const char *);
probe loaded__file(const char *);
};
/*
* ex: set ts=8 sts=4 sw=4 et:
*/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化