Implement AcpiOsWaitEventsComplete

This commit is contained in:
Baptiste Wicht 2016-07-23 16:32:09 +02:00
parent 807905ebb6
commit 5e3209fa65

View File

@ -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(){