码迷,mamicode.com
首页 > 数据库 > 详细

GDB + core 文件调试程序

时间:2016-05-19 19:13:19      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:

https://segmentfault.com/a/1190000002703073

生成CORE文件并调试core 文件调试程序文件:
查看系统CORE文件设置:ulimit -a
core file size 0说明没打开core  (程序出错崩溃系统记录程序的上下问 内存 cpu等信息供调试)

技术分享
打开CORE文件:ulimit -c unlimited 或者ulimit -c 1000
禁用:ulimit -c 0
调试CORE文件:
gdb programbin corefile
>where  /bt

 


//重启之后保持 ulimi -a设置
/etc/profile中的:
# No core files by default
 ulimit -c unlimited
     ulimit -S -c 0 > /dev/null 2>&1
    source /etc/profile

GDB + core 文件调试程序

标签:

原文地址:http://www.cnblogs.com/jk0011/p/5509616.html

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