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

[转]Avoiding GDB Signal Noise.

时间:2014-07-31 02:44:25      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:des   style   http   color   os   io   for   ar   

原文:http://peeterjoot.wordpress.com/2010/07/07/avoiding-gdb-signal-noise/

A quick note for future reference (recorded elsewhere and subsequently lost).

Suppose your program handles a signal that gdb intercepts by default, like the following example

(gdb) c
Continuing.

Program received signal SIGUSR1, User defined signal 1.
[Switching to Thread 47133440862528 (LWP 4833)]
0x00002ade149d6baa in semtimedop () from /lib64/libc.so.6
(gdb) c

You can hit ‘c’ to continue at this point, but if it happens repeatedly in various threads (like when one thread is calling pthread_kill() to force each other thread in turn to dump its stack and stuff) this repeated ‘c’ing can be a bit of a pain.

For the same SIGUSR1 example above, you can query the gdb handler rules like so:

(gdb) info signal SIGUSR1
Signal        Stop      Print   Pass to program Description
SIGUSR1       Yes       Yes     Yes             User defined signal 1

And if deemed to not be of interest, where you just want your program to continue without prompting or spamming, something like the following does the trick:

(gdb) handle SIGUSR1 noprint nostop
Signal        Stop      Print   Pass to program Description
SIGUSR1       No        No      Yes             User defined signal 1

??

[转]Avoiding GDB Signal Noise.,布布扣,bubuko.com

[转]Avoiding GDB Signal Noise.

标签:des   style   http   color   os   io   for   ar   

原文地址:http://www.cnblogs.com/Proteas/p/3879677.html

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