diff options
Diffstat (limited to 'src/kernel/acpi/acpi.h')
-rw-r--r-- | src/kernel/acpi/acpi.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/kernel/acpi/acpi.h b/src/kernel/acpi/acpi.h index 6db7e72..53c57b4 100644 --- a/src/kernel/acpi/acpi.h +++ b/src/kernel/acpi/acpi.h @@ -1,10 +1,20 @@ #ifndef MELVIX_ACPI_H #define MELVIX_ACPI_H +/** + * Initialize the ACP interface + * @return 0 if successful, otherwise -1 + */ int acpi_install(); +/** + * Activate a ACPI based device reboot + */ void reboot(); +/** + * Activate a ACPI based device shutdown/poweroff + */ void acpi_poweroff(); #endif |