mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-15 07:27:42 -04:00
Implement AcpiOsWaitEventsComplete
This commit is contained in:
parent
807905ebb6
commit
5e3209fa65
@ -150,10 +150,17 @@ ACPI_STATUS AcpiOsExecute(ACPI_EXECUTE_TYPE /*type*/, ACPI_OSD_EXEC_CALLBACK fun
|
|||||||
/*!
|
/*!
|
||||||
* \brief Returns the system time in 100 nanoseconds units
|
* \brief Returns the system time in 100 nanoseconds units
|
||||||
*/
|
*/
|
||||||
UINT64 AcpiOsGetTimer(void){
|
UINT64 AcpiOsGetTimer(){
|
||||||
return timer::seconds() * 10000000;
|
return timer::seconds() * 10000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*!
|
||||||
|
* \brief Wait for all asynchronous events to complete
|
||||||
|
*/
|
||||||
|
void AcpiOsWaitEventsComplete(){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// ACPI
|
// ACPI
|
||||||
|
|
||||||
ACPI_PHYSICAL_ADDRESS AcpiOsGetRootPointer(){
|
ACPI_PHYSICAL_ADDRESS AcpiOsGetRootPointer(){
|
||||||
|
Loading…
x
Reference in New Issue
Block a user