红联Linux门户
Linux帮助

gdb重定向stdout和stderr输出到调试窗口

发布时间:2016-03-20 10:43:12来源:linux网站作者:ALAWSWF

步骤一:查找需要attach的进程

# ps aux|grep prm 


步骤二:使用gdb attach到进程

# gdb attach 8930 


步骤三:重新定向输出日志

(gdb) call close(1) 
$1 = 0 
(gdb) call close(2) 
$2 = 0 
(gdb) shell tty 
/dev/pts/0 
(gdb) call open("/dev/pts/0",2) 
$3 = 1 
(gdb) call open("/dev/pts/0",2) 


步骤四:立即输出打印消息设置

(gdb) call setbuf(stdout, 0)  
$5 = -1237187808  
(gdb) call printf("testetete\r\n")  
testetete  
$6 = 11


本文永久更新地址:http://www.linuxdiyf.com/linux/19084.html