Added "where" as alias of "sc" as in BeOS.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5310 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-11-11 04:49:15 +00:00
parent 1e065e6132
commit e81f0e1f79

View File

@ -89,7 +89,8 @@ arch_dbg_init(kernel_args *ka)
{
// at this stage, the debugger command system is alive
add_debugger_command("sc", &dbg_stack_trace, "Stack crawl for current thread");
add_debugger_command("where", &dbg_stack_trace, "Stack crawl for current thread");
add_debugger_command("sc", &dbg_stack_trace, NULL);
return B_NO_ERROR;
}