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

gdb动态挂运行程序并调试

时间:2015-02-11 23:22:46      阅读:542      评论:0      收藏:0      [点我收藏+]

标签:

/*
 * gdb动态挂运行程序并调试
 * 编译程序:
 * gcc gdb_attach2.c -o gdb_attach2 -g
 * 
 * 运行程序:
 * ./gdb_attach2
 *
 * 查看程序进程代号:
 * ps ax | grep gdb_attach2
 * 3973 pts/0    S+     0:00 ./gdb_attach2
 *
 * 启用gdb挂载程序:
 * gdb gdb_attach2 3973
 *
 * 在目标位置设置断点
 * b gdb_attach2.c:44
 * Breakpoint 1 at 0x40052f: file gdb_attach2.c, line 44.
 *
 * 设置断点执行指令
 * (gdb) command 1
 * Type commands for breakpoint(s) 1, one per line.
 * End with a line saying just "end".
 * >p i
 * >c
 * >end
 *
 * 设置gdb环境
 * set height 0
 *
 * 继续运行程序
 * (gdb) c 
 *
 * 退出gdb程序
 * CTRL-C
 * quit
 */
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>

int fun(int cnt)
{
	int i;
	for(i=0;i<cnt;++i)
	{
		printf("in fun i=%d\n",i);
		sleep(1);
	}
	return 0;
}

int main()
{
	fun(1000);
	return 0;
}

gdb动态挂运行程序并调试

标签:

原文地址:http://blog.csdn.net/adream307/article/details/43742611

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