Added "bt" to print a stack crawl to get less confused by gdb :-)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15660 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-12-22 23:54:51 +00:00
parent 268893283f
commit 032a2d2805
1 changed files with 1 additions and 0 deletions

View File

@ -246,6 +246,7 @@ arch_debug_init(kernel_args *args)
// at this stage, the debugger command system is alive
add_debugger_command("where", &stack_trace, "Same as \"sc\"");
add_debugger_command("bt", &stack_trace, "Same as \"sc\" (as in gdb)");
add_debugger_command("sc", &stack_trace, "Stack crawl for current thread");
return B_NO_ERROR;