From: Ben Gras Date: Wed, 15 Mar 2006 15:16:16 +0000 (+0000) Subject: Removed some debug prints X-Git-Tag: v3.1.2a~227 X-Git-Url: http://zhaoyanbai.com/repos/%22/xml/v3/zones/static/gitweb.css?a=commitdiff_plain;h=557d865b353644392e34ea9f423c9115cc0e99dd;p=minix.git Removed some debug prints --- 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 */ }