aboutsummaryrefslogtreecommitdiff
path: root/misc/.gdbinit
blob: b1eb7d8acf24362de607d3f14786eb2d5943298f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
set print static-members off
set print frame-arguments all
# unlimited print string length
set print elements 0
handle SIGUSR1 nostop noprint
handle SIGUSR2 nostop noprint
handle SIGWAITING nostop noprint
handle SIGLWP nostop noprint
handle SIGPIPE nostop
handle SIGALRM nostop
handle SIGHUP nostop
handle SIGTERM nostop noprint
handle SIG32 nostop noprint
handle SIG33 nostop noprint
alias dsp = display
alias ud = undisplay
alias wl = watch -l
alias awl = awatch -l
alias rwl = rwatch -l
alias rt = restart
set history save on
set history filename ~/.gdb_history
set history remove-duplicates unlimited
set history size unlimited
set history expansion on
set print object on
alias pvtable = print /a (*(void ***))
set unwindonsignal on
set print vtbl on
set print pretty on
# rr
alias rf = reverse-finish

source ~/.gdbinit_local