]> Zhao Yanbai Git Server - minix.git/commitdiff
Removed some debug prints
authorBen Gras <ben@minix3.org>
Wed, 15 Mar 2006 15:16:16 +0000 (15:16 +0000)
committerBen Gras <ben@minix3.org>
Wed, 15 Mar 2006 15:16:16 +0000 (15:16 +0000)
servers/pm/misc.c

index 2a5d99e1be8952860e84097392e1aa35c85678ea..af9c2e6342c6e3766612cedd6bea7347c0a8e555 100644 (file)
@@ -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 */
 }