aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/acpi/acpi.h
blob: 53c57b430e814f07b9d0ea5d3c5ccde465f1048a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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