追踪 valgrind 内存泄漏的技巧
有什么追踪东西的技巧吗?技术?任何可用于检查函数 x 的调用者的工具(调用堆栈的某些部分显示为 ??? 或被跳过)。
--track-origins=yes 是否会使速度变慢(当我尝试这样做时,我使用它的程序似乎超时了)。
Any tips for tracking stuff down? Techniques? Any tools useful to check callers of function x(some parts of the call stack appear as ??? or are skipped).
Does --track-origins=yes make things much slower(the program I'm using it on seems to time out when I try to do that).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用优化(例如 -O3)进行编译可能会导致某些函数被优化,并可能导致您看到 ??? 。
Compiling with optimizations (e.g. -O3) can cause some functions to be optimized out, and could result in the ???'s you're seeing.