程序运行时的内存映像,在程序发生异常时产生。生成CORE文件并调试CORE文件:
查看系统CORE文件设置:ulimit -a
打开CORE文件:ulimit -c unlimited 或者ulimit -c 1000
禁用:ulimit -c 0
调试CORE文件:
gdb programbin corefile
>where/bt
/etc/profile中的:
# No core files by default
ulimit -c unlimited
ulimit -S -c 0 > /dev/null 2>&1
source /etc/profile
Copyright 2011-2020 © MallocFree. All rights reserved.