如何使用sprof?

发布于 2024-07-19 13:49:22 字数 13 浏览 4 评论 0原文

请举例说明?

please explain with example?

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

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

发布评论

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

评论(1

说好的呢 2024-07-26 13:49:22

此处此处,我提取了以下注释:

给定一个应用程序 my_app',其中链接到共享对象my_sobj',并且已使用“-g”编译标志进行编译:

#set the environment variable LD_PROFILE to the name of the shared obj
export LD_PROFILE=my_obj
#run your application
my_app
#this should create a file /var/tmp/my_sobj.profile
#now run sprof
sprof my_sobj my_sobj.profile

这提供了共享库的配置文件信息,而不是 my_app

From the emails found here and here, I've extracted the following notes:

Given an application my_app', which links against a shared objectmy_sobj', and has been compiled with the '-g' compile flag:

#set the environment variable LD_PROFILE to the name of the shared obj
export LD_PROFILE=my_obj
#run your application
my_app
#this should create a file /var/tmp/my_sobj.profile
#now run sprof
sprof my_sobj my_sobj.profile

This gives profile information for the shared library, not for my_app

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