kernel debug: priv can be NULL early on
[minix.git] / include / sys / reboot.h
blob90d36ea172d4123112ffb14748b42688fd6d7817
1 #ifndef _SYS_REBOOT_H_
2 #define _SYS_REBOOT_H_
4 /* How to exit the system or stop a server process. */
5 #define RBT_HALT 0 /* shutdown and return to monitor */
6 #define RBT_REBOOT 1 /* reboot the system through the monitor */
7 #define RBT_PANIC 2 /* a server panics */
8 #define RBT_POWEROFF 3 /* power off, reset if not possible */
9 #define RBT_RESET 4 /* hard reset the system */
10 #define RBT_DEFAULT 5 /* return to monitor, reset if not possible */
11 #define RBT_INVALID 6 /* first invalid reboot flag */
13 #endif