Mark shutdown_reboot() and shutdown_power_off() as NO_RETURN.
authorBen Pfaff <blp@cs.stanford.edu>
Sun, 9 Nov 2008 23:40:18 +0000 (15:40 -0800)
committerBen Pfaff <blp@cs.stanford.edu>
Sun, 9 Nov 2008 23:40:18 +0000 (15:40 -0800)
Also, make shutdown_reboot() actually behave that way, by trying to reboot
forever instead of giving up after some number of tries.

src/devices/shutdown.c
src/devices/shutdown.h

index fbc662b01c095edc25741ea265e5a01fe52e0c78..4c978f970216169d69b34d061ae7c1c3d746f857 100644 (file)
@@ -23,19 +23,17 @@ static void print_stats (void);
 void
 shutdown_reboot (void)
 {
-  int i;
-
   printf ("Rebooting...\n");
 
     /* See [kbd] for details on how to program the keyboard
      * controller. */
-  for (i = 0; i < 100; i++)
+  for (;;)
     {
-      int j;
+      int i;
 
       /* Poll keyboard controller's status byte until
        * 'input buffer empty' is reported. */
-      for (j = 0; j < 0x10000; j++)
+      for (i = 0; i < 0x10000; i++)
         {
           if ((inb (CONTROL_REG) & 0x02) == 0)
             break;
index 0bc5657b4b8716978827bc513ef9aead9bc1e97e..7bcef19e7759509c7625920785bb1ef1829b22d9 100644 (file)
@@ -1,7 +1,9 @@
 #ifndef DEVICES_SHUTDOWN_H
 #define DEVICES_SHUTDOWN_H
 
-void shutdown_reboot (void);
-void shutdown_power_off (void);
+#include <debug.h>
+
+void shutdown_reboot (void) NO_RETURN;
+void shutdown_power_off (void) NO_RETURN;
 
 #endif /* devices/shutdown.h */