Here is a tutorial about POSIX signals.
from an other source:
if you get "Program received signal SIG35, Real-time event 35.", this is due to a directory changing rather than a bug. You can disable these events and then c(ontinue) (the signal number may vary):
(gdb) handle SIG33 noprint nostop
(gdb) c
there is also mentioned strace :
$ strace -p PID
or
$ strace -p PID -t
other 'tools' for debug and tracing:
- valgrind
- debug for linux
No comments:
Post a Comment