From e81f0e1f79c6808f98a40fa9302589a867c88e36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 11 Nov 2003 04:49:15 +0000 Subject: [PATCH] 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 --- src/kernel/core/arch/x86/arch_debug.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/kernel/core/arch/x86/arch_debug.c b/src/kernel/core/arch/x86/arch_debug.c index 045c5cb2a6..850b66dd90 100755 --- a/src/kernel/core/arch/x86/arch_debug.c +++ b/src/kernel/core/arch/x86/arch_debug.c @@ -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; }