From: Szabolcs Nagy Date: Sat, 12 Jan 2013 14:37:00 +0000 (+0100) Subject: add RB_SW_SUSPEND and RB_KEXEC to sys/reboot.h X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=c7351ffe9b9bbc6297ffad252ab1f6e39db87d73 add RB_SW_SUSPEND and RB_KEXEC to sys/reboot.h using the glibc names for the magic constants of the linux reboot syscall --- diff --git a/include/sys/reboot.h b/include/sys/reboot.h index 26cc3088..9702eddb 100644 --- a/include/sys/reboot.h +++ b/include/sys/reboot.h @@ -9,6 +9,8 @@ extern "C" { #define RB_ENABLE_CAD 0x89abcdef #define RB_DISABLE_CAD 0 #define RB_POWER_OFF 0x4321fedc +#define RB_SW_SUSPEND 0xd000fce2 +#define RB_KEXEC 0x45584543 int reboot(int);