[BACK]Return to kdb_cmds CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / kdb

File: [Development] / linux-2.6-xfs / kdb / kdb_cmds (download)

Revision 1.17, Mon Feb 20 14:29:08 2006 UTC (11 years, 8 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.16: +3 -0 lines

Merge up to 2.6.16-rc4, KDB updated too.
Merge of 2.6.x-xfs-melb:linux:25234a by kenmcd.

# Initial commands for kdb, alter to suit your needs.
# These commands are executed in kdb_init() context, no SMP, no
# processes.  Commands that require process data (including stack or
# registers) are not reliable this early.  set and bp commands should
# be safe.  Global breakpoint commands affect each cpu as it is booted.

# Standard debugging information for first level support, just type archkdb
# or archkdbcpu or archkdbshort at the kdb prompt.

defcmd archkdb "" "First line arch debugging"
  set BTSYMARG 1
  set BTARGS 5
  pid R
  -archkdbcommon
  -bta
endefcmd

defcmd archkdbcpu "" "archkdb with only tasks on cpus"
  set BTSYMARG 1
  set BTARGS 5
  pid R
  -archkdbcommon
  -btc
endefcmd

defcmd archkdbshort "" "archkdb with less detailed backtrace"
  set BTSYMARG 0
  set BTARGS 0
  pid R
  -archkdbcommon
  -bta
endefcmd