callgrind 函数名称不会显示在子进程中

发布于 2024-09-03 06:08:21 字数 231 浏览 5 评论 0原文

我有一个进程 A,它分叉了进程 B。A 和 B - 是不同的应用程序。两者都使用 -g 标志编译。

要使用 callgrind 运行它,我使用命令: valgrind --tool=callgrind --trace-children=yes ./A [params]

父进程 (A) 的 callgrind.out.xxx 包含函数名称。对于子进程(B) - 它不包含。这里可能出了什么问题?

谢谢

I have process A wich forks process B. A and B - are different application. Both compiled with -g flag.

to run it with callgrind I use command:
valgrind --tool=callgrind --trace-children=yes ./A [params]

callgrind.out.xxx for parent process (A) contains function names. for child process(B) - it doesn't contains. What could be wrong here?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

思念绕指尖 2024-09-10 06:08:21

您尝试过最新版本的 valgrind 吗?

当前唯一对我来说显而易见的问题是:

...您必须确保输出文件格式字符串(由 --callgrind-out-file 控制)确实包含 < strong>%p(默认情况下为 true)。否则,父级和子级的输出将相互覆盖或混合,这几乎肯定不是您想要的。

摘自 callgrind 文档

Have you tried with latest version of valgrind ?

The only current problem which seems obvious to me is:

...you will have to make sure that the output file format string (controlled by --callgrind-out-file) does contain %p (which is true by default). Otherwise, the outputs from the parent and child will overwrite each other or will be intermingled, which almost certainly is not what you want.

extracted from callgrind documentation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文