程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> gdb調用程序崩潰時的內存鏡像core文件

gdb調用程序崩潰時的內存鏡像core文件

編輯:關於C++
/*
 * gcc gdb_test.c -o gdb_test -g
 * ./gdb_test 
 * Segmentation fault (core dumped)
 * gdb gdb_test -c core.5521 
 * Core was generated by `gdb_test'.
 * Program terminated with signal 11, Segmentation fault.
 * #0  0x000000000040048b in main (argc=1, argv=0x7fff00c0b438) at gdb_test.c:18
 * 18		*ptr='\n';
 */
#include
#include
#include

int main(const int argc,const char *argv[])
{
	char *ptr=NULL;
	*ptr='\n';
	return 0;
}
/*
 * add follow in the ~/.bashrc file to generate core file
 * ulimit -c unlimited
 */

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved