[*] No way should we be using DWORDs here

This commit is contained in:
Reece Wilson 2024-01-07 02:26:34 +00:00
parent 1e10d95b0b
commit 0d6d073b85
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ namespace Aurora::Threading::Primitives
}
}
extern "C" DWORD SMTGetAPICNumber(void)
extern "C" AuUInt32 SMTGetAPICNumber(void)
{
return AuHwInfo::cpuid(1).ebx >> 24;
}

View File

@ -15,7 +15,7 @@ namespace Aurora::Threading
extern "C"
{
DWORD SMTGetAPICNumber(void);
AuUInt32 SMTGetAPICNumber(void);
}
#include <Source/Extensions/Clocks.aarch64.hpp>