From 557d865b353644392e34ea9f423c9115cc0e99dd Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Wed, 15 Mar 2006 15:16:16 +0000 Subject: [PATCH] Removed some debug prints --- servers/pm/misc.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/servers/pm/misc.c b/servers/pm/misc.c index 2a5d99e1b..af9c2e634 100644 --- a/servers/pm/misc.c +++ b/servers/pm/misc.c @@ -199,19 +199,14 @@ PUBLIC int do_reboot() * SIGKILL. So first kill, then reboot. */ - printf("check_sig(-1, SIGKILL) ...\n"); check_sig(-1, SIGKILL); /* kill all users except init */ - printf("stopping init with PRIO_STOP ...\n"); sys_nice(INIT_PROC_NR, PRIO_STOP); /* stop init, but keep it around */ - printf("tell_fs to sync() ...\n"); tell_fs(REBOOT, 0, 0, 0); /* tell FS to synchronize */ - printf("sys_abort ...\n"); /* Ask the kernel to abort. All system services, including the PM, will * get a HARD_STOP notification. Await the notification in the main loop. */ sys_abort(abort_flag, PM_PROC_NR, code_addr, code_size); - printf("sys_abort called\n"); return(SUSPEND); /* don't reply to caller */ } -- 2.44.0