aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/%HOME%/.gdbinit
blob: 1ce9e2a145e346f5f780188d8f9a045ac41c357c (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
# Disable the stupid <RET>/q/c prompt:
set pagination off
# When I type something, I mean it:
set confirm off
# Pretty-print structures:
set print pretty on

define bta
    thread apply all backtrace
end

# The Intel flavor was my first.
set disassembly-flavor intel

set history save on
set history filename ~/.gdb-history
set history size 1000

set debuginfod enabled on

define xxd
    dump binary memory /tmp/dump.bin $arg0 ((char *)$arg0)+$arg1
    shell xxd -groupsize 1 /tmp/dump.bin
    shell rm -f /tmp/dump.bin
end