reboot.h 232 B

1234567891011
  1. #include <syscall.h>
  2. #define RB_AUTOBOOT 0x01234567
  3. #define RB_HALT_SYSTEM 0xcdef0123
  4. #define RB_POWER_OFF 0x4321fedc
  5. inline static long sys_reboot(int cmd)
  6. {
  7. return syscall4(NR_reboot, 0xfee1dead, 0x28121969, cmd, 0);
  8. }