I am doing to following:
gdb -p $progid -x $file
>> cat file
>> handle SIGUSR1 nostop
c
How can I handle all signals to nostop without having to write:
handle SIGUSR1 nostop
handle SIGUSR2 nostop
Etc...
I am doing to following:
gdb -p $progid -x $file
>> cat file
>> handle SIGUSR1 nostop
c
How can I handle all signals to nostop without having to write:
handle SIGUSR1 nostop
handle SIGUSR2 nostop
Etc...
handle all nostop
Further documentation: here.