From d156ad0a0fc043356d2983a788849e69bf256999 Mon Sep 17 00:00:00 2001 From: Tom Lally Date: Thu, 1 Sep 2022 17:13:14 +0100 Subject: [PATCH] Cleanup --- src/util/SystemInfo/SystemInfo.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/util/SystemInfo/SystemInfo.h b/src/util/SystemInfo/SystemInfo.h index 10abb85d..14bb0f38 100644 --- a/src/util/SystemInfo/SystemInfo.h +++ b/src/util/SystemInfo/SystemInfo.h @@ -10,9 +10,8 @@ struct ProcessorTime static double Compare(ProcessorTime &last, ProcessorTime &now); }; +uint32_t GetProcessorCount(); +uint64_t QueryRamUsage(); void QueryProcTime(uint64_t &out_now, uint64_t &out_user, uint64_t &out_kernel); void QueryProcTime(ProcessorTime &out); -void QueryCoreTimes(uint32_t count, ProcessorTime out[]); - -uint32_t GetProcessorCount(); -uint64_t QueryRamUsage(); \ No newline at end of file +void QueryCoreTimes(uint32_t count, ProcessorTime out[]); \ No newline at end of file