码迷,mamicode.com
首页 > 其他好文 > 详细

在模拟器上显示堆栈信息

时间:2014-10-01 03:41:00      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   sp   div   c   log   html   r   

在模拟器上调试时,经常遇到内存访问错误,如下:

2012-02-14 11:21:11.41 App[2433:205] *** -[Test retain]: message sent to deallocated instance 0x11e4fb

1.在设置了MallocStackLogging之后(可查看设置NSZombieEnabled和MallocStackLogging

就可以在终端上输入 info malloc-history 命令,如下所示:

(gdb) info malloc-history 0x11e4fb

其中0x11e4fb为出错地址,这样就能得到堆栈信息

2.此外,还有另一个命令:

(gdb) shell malloc_history 2433 0x11e4fb

其中2433为进程名的前面部分

 

在模拟器上显示堆栈信息

标签:blog   http   ar   sp   div   c   log   html   r   

原文地址:http://www.cnblogs.com/BinZone/p/4002983.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!