mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-30 00:08:03 +00:00
Fixed compilation failing on aarch64
This commit is contained in:
parent
a245fb009c
commit
52f0879a72
@ -14,9 +14,12 @@ namespace Time
|
|||||||
{
|
{
|
||||||
void time::Sleep(uint64_t Milliseconds)
|
void time::Sleep(uint64_t Milliseconds)
|
||||||
{
|
{
|
||||||
|
#if defined(__amd64__) || defined(__i386__)
|
||||||
uint64_t Target = mminq(&((HPET *)hpet)->MainCounterValue) + (Milliseconds * 1000000000) / clk;
|
uint64_t Target = mminq(&((HPET *)hpet)->MainCounterValue) + (Milliseconds * 1000000000) / clk;
|
||||||
while (mminq(&((HPET *)hpet)->MainCounterValue) < Target)
|
while (mminq(&((HPET *)hpet)->MainCounterValue) < Target)
|
||||||
;
|
;
|
||||||
|
#elif defined(__aarch64__)
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
time::time(void *_acpi)
|
time::time(void *_acpi)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user