aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/acpi
diff options
context:
space:
mode:
authorMarvin Borner2019-09-28 23:08:13 +0200
committerMarvin Borner2019-09-28 23:08:13 +0200
commitb9c103e3048d2b28a2606a3b9693ec881425a732 (patch)
tree492a1bdba84c7dc8fe5eaee5c640cf9341f120ba /src/kernel/acpi
parent4dddb5f5f8611f6df6d2ce2f019cca67a5598cdb (diff)
Added some documentation
Diffstat (limited to 'src/kernel/acpi')
-rw-r--r--src/kernel/acpi/acpi.h10
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