blob: f5bf8d0d6980508e7cc5319a45163204e2b41776 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Disable the stupid <RET>/q/c prompt:
set pagination off
# Sorry :-(
set disassembly-flavor intel
set history save on
set history filename ~/.gdb-history
set history size 1000
set confirm off
set print pretty on
define bta
thread apply all backtrace
end
|