分析多进程程序
我想分析一个分叉并生成多个子进程的程序。 我想看看某些功能花费了多少时间。 什么分析器可以处理这项工作?
I'd like to profile a program that forks and spawns several child processes. I want to see how much time is spent in some of the functions. What profiler can handle this job?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Oprofile 非常适合此目的。
Oprofile works well for this.
我认为你可以使用 SystemTap - DTrace Linux 上的想法实现
I think you can do it with SystemTap - DTrace ideas implementation on Linux
尝试从 RotateRight 中缩放。 它默认进行系统范围的分析。 如果您有更高版本(2.6.32+)的内核,您还可以获得调度程序行为和系统调用的时间线视图。
Try Zoom from RotateRight. It does system-wide profiling by default. If you have a later (2.6.32+) kernel, you can also get a timeline view of the scheduler behavior and system calls.