如何处理GDB中的所有信号

时间:2014-07-28 15:57:54

标签: gdb

我正在做以下事情:

gdb -p $progid -x $file


>> cat file
>> handle SIGUSR1 nostop
    c

如何处理nostop的所有信号而不必写:

handle SIGUSR1 nostop
handle SIGUSR2 nostop
Etc...

1 个答案:

答案 0 :(得分:9)

handle all nostop

进一步的文件:here