/*** Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: CpuInfo.hpp Date: 2021-6-10 Author: Reece ***/ #pragma once #include "CpuBitId.hpp" #include "CpuId.hpp" namespace Aurora::HWInfo { struct CpuInfo { Aurora::Build::EArchitecture cpuArch; AuUInt8 socket; AuUInt8 cores; AuUInt8 threads; AuList threadTopology; AuList serverTopology; CpuBitId maskECores; bool maskMTContig; bool maskMTHalf; CpuId cpuId; }; AUKN_SYM const CpuInfo &GetCPUInfo(); }