2005-04-16 15:20:36 -07:00
|
|
|
#ifndef _LINUX_REBOOT_H
|
|
|
|
#define _LINUX_REBOOT_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <linux/notifier.h>
|
2012-10-13 10:46:48 +01:00
|
|
|
#include <uapi/linux/reboot.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2011-07-25 17:13:10 -07:00
|
|
|
#define SYS_DOWN 0x0001 /* Notify of system down */
|
|
|
|
#define SYS_RESTART SYS_DOWN
|
|
|
|
#define SYS_HALT 0x0002 /* Notify of system halt */
|
|
|
|
#define SYS_POWER_OFF 0x0003 /* Notify of system power off */
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
extern int register_reboot_notifier(struct notifier_block *);
|
|
|
|
extern int unregister_reboot_notifier(struct notifier_block *);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Architecture-specific implementations of sys_reboot commands.
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern void machine_restart(char *cmd);
|
|
|
|
extern void machine_halt(void);
|
|
|
|
extern void machine_power_off(void);
|
|
|
|
|
2005-06-25 14:57:52 -07:00
|
|
|
extern void machine_shutdown(void);
|
2005-06-25 14:58:26 -07:00
|
|
|
struct pt_regs;
|
|
|
|
extern void machine_crash_shutdown(struct pt_regs *);
|
2005-06-25 14:57:52 -07:00
|
|
|
|
2005-07-26 11:24:14 -06:00
|
|
|
/*
|
|
|
|
* Architecture independent implemenations of sys_reboot commands.
|
|
|
|
*/
|
|
|
|
|
2008-08-15 00:40:24 -07:00
|
|
|
extern void kernel_restart_prepare(char *cmd);
|
2005-07-26 11:24:14 -06:00
|
|
|
extern void kernel_restart(char *cmd);
|
|
|
|
extern void kernel_halt(void);
|
|
|
|
extern void kernel_power_off(void);
|
2006-06-25 05:47:41 -07:00
|
|
|
|
2010-03-10 15:23:59 -08:00
|
|
|
extern int C_A_D; /* for sysctl */
|
2006-06-25 05:47:41 -07:00
|
|
|
void ctrl_alt_del(void);
|
2005-07-26 11:24:14 -06:00
|
|
|
|
2007-07-17 18:37:02 -07:00
|
|
|
#define POWEROFF_CMD_PATH_LEN 256
|
|
|
|
extern char poweroff_cmd[POWEROFF_CMD_PATH_LEN];
|
|
|
|
|
|
|
|
extern int orderly_poweroff(bool force);
|
|
|
|
|
2005-07-26 11:29:55 -06:00
|
|
|
/*
|
|
|
|
* Emergency restart, callable from an interrupt handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern void emergency_restart(void);
|
|
|
|
#include <asm/emergency-restart.h>
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif /* _LINUX_REBOOT_H */
|