| 
 | 
 
我在用gdb的时候 每走一步都显示很多程序调用的信息 
如下 
gdb: do_initial_child_stuff: process 1844 
gdb: kernel event for pid=1844 tid=3124 code=CREATE_PROCESS_DEBUG_EVENT) 
gdb: child_resume.SetThreadContext: thread 1844.0xc34 
ContinueDebugEvent (cpid=1844, ctid=3124, DBG_CONTINUE 
gdb: kernel event for pid=1844 tid=3124 code=LOAD_DLL_DEBUG_EVENT) 
gdb: child_resume.SetThreadContext: thread 1844.0xc34 
ContinueDebugEvent (cpid=1844, ctid=3124, DBG_CONTINUE); 
gdb: kernel event for pid=1844 tid=3124 code=LOAD_DLL_DEBUG_EVENT) 
gdb: child_resume.SetThreadContext: thread 1844.0xc34 
ContinueDebugEvent (cpid=1844, ctid=3124, DBG_CONTINUE); 
gdb: kernel event for pid=1844 tid=3124 code=LOAD_DLL_DEBUG_EVENT) 
gdb: child_resume.SetThreadContext: thread 1844.0xc34 
ContinueDebugEvent (cpid=1844, ctid=3124, DBG_CONTINUE); 
gdb: kernel event for pid=1844 tid=3124 code=EXCEPTION_DEBUG_EVENT) 
gdb: child_resume.SetThreadContext: thread 1844.0xc34 
ContinueDebugEvent (cpid=1844, ctid=3124, DBG_CONTINUE); 
gdb: kernel event for pid=1844 tid=3124 code=EXCEPTION_DEBUG_EVENT) 
Breakpoint 1, main () at //C/Debug/temp.c:28 
 
怎样才能不显示上面的信息只保留 
Breakpoint 1, main () at //C/Debug/temp.c:28 
 
谢谢! |   
 
 
 
 |