Drop obsoleted patch.
[linux-flexiantxendom0-3.2.10.git] / kdb / kdb_cmds
1 # Initial commands for kdb, alter to suit your needs.
2 # These commands are executed in kdb_init() context, no SMP, no
3 # processes.  Commands that require process data (including stack or
4 # registers) are not reliable this early.  set and bp commands should
5 # be safe.  Global breakpoint commands affect each cpu as it is booted.
6
7 # Standard debugging information for first level support, just type archkdb
8 # or archkdbcpu or archkdbshort at the kdb prompt.
9
10 defcmd archkdb "" "First line arch debugging"
11   set BTSYMARG 1
12   set BTARGS 5
13   -archkdbcommon
14   -bta
15 endefcmd
16
17 defcmd archkdbcpu "" "archkdb with only tasks on cpus"
18   set BTSYMARG 1
19   set BTARGS 5
20   -archkdbcommon
21   -btc
22 endefcmd
23
24 defcmd archkdbshort "" "archkdb with less detailed backtrace"
25   set BTSYMARG 0
26   set BTARGS 0
27   -archkdbcommon
28   -bta
29 endefcmd