BREW:跟踪 BPOINT 错误消息的方法
您好,我是 BREW 移动开发新手。 我想知道如何在模拟器中跟踪 BPOINT 错误消息的方法,例如双重释放内存(BPOINT 的 TYPE 3)等。
谢谢。 克拉姆克拉姆
Hi I'm new to BREW mobile development. And I want to know the methods on how to trace the BPOINT error messages in the simulator, like double free of memory which is the TYPE 3 of BPOINT, etc.
Thanks.
Kramkram
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 DBGPRINTF(FILE_LINE );
由于 BPOINT 错误消息一旦发生就会出现在模拟器日志中,因此放置 DBGPRINTF(FILE_LINE) 实际上非常有效,它们会指示错误是在语句之前还是之后。
把它们放很多 - 查找& 修复错误然后删除 - 它比您想象的要快。
use DBGPRINTF(FILE_LINE );
As BPOINT error messages appear in the simulator log as soon as happen it is actually very effective to put DBGPRINTF(FILE_LINE ) they will give you indication of if the error is before or after the statement.
put them a lot - find & fix errors then remove - it faster than you think.