Added "shutdown" debugger command. Implemented arch_cpu_shutdown() for

PPC.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15862 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2006-01-07 22:49:43 +00:00
parent 85af525e59
commit 8baf8813c0
5 changed files with 30 additions and 2 deletions
+9
View File
@@ -325,6 +325,14 @@ cmd_reboot(int argc, char **argv)
}
static int
cmd_shutdown(int argc, char **argv)
{
arch_cpu_shutdown(false);
return 0;
}
static int
cmd_help(int argc, char **argv)
{
@@ -412,6 +420,7 @@ debug_init_post_vm(kernel_args *args)
add_debugger_command("help", &cmd_help, "List all debugger commands");
add_debugger_command("reboot", &cmd_reboot, "Reboot the system");
add_debugger_command("shutdown", &cmd_shutdown, "Shut down the system");
add_debugger_command("gdb", &cmd_gdb, "Connect to remote gdb");
add_debugger_command("continue", &cmd_continue, "Leave kernel debugger");
add_debugger_command("exit", &cmd_continue, NULL);