Files
scylladb/gdbinit
Botond Dénes 8a86f8d4ef gdbinit: add ignore clause for SIG35
Another real-time even often raised in scylla, making debugging a live
process annoying.

Closes #12507
2023-01-12 12:13:04 +02:00

21 lines
617 B
Plaintext

# Recommended .gdbinit for debugging scylla
# See docs/dev/debugging.md for more information
handle SIG34 pass noprint
handle SIG35 pass noprint
handle SIGUSR1 pass noprint
set print pretty
set python print-stack full
set auto-load safe-path /opt/scylladb/libreloc
add-auto-load-safe-path /lib64
add-auto-load-safe-path /usr/lib64
set debug libthread-db 1
# Register pretty-printer helpers for printing common
# std-c++ stl containers.
python
import glob
sys.path.insert(0, glob.glob('/usr/share/gcc-*/python')[0])
from libstdcxx.v6.printers import register_libstdcxx_printers
register_libstdcxx_printers (None)
end