From ab3a1272c9ac8e17d2aeb983f81e72a51940d3a2 Mon Sep 17 00:00:00 2001 From: Marat Dukhan Date: Fri, 25 Aug 2017 23:20:07 -0700 Subject: Rename thread_start/thread_count -> processor_start/processor_count --- include/cpuinfo.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/cpuinfo.h b/include/cpuinfo.h index ff74f4a..88d0a33 100644 --- a/include/cpuinfo.h +++ b/include/cpuinfo.h @@ -265,9 +265,9 @@ struct cpuinfo_cache { */ uint32_t flags; /** Index of the first logical processor that shares this cache */ - uint32_t thread_start; + uint32_t processor_start; /** Number of logical processors that share this cache */ - uint32_t thread_count; + uint32_t processor_count; }; struct cpuinfo_caches { @@ -603,13 +603,13 @@ struct cpuinfo_processor { }; struct cpuinfo_core { - uint32_t thread_start; - uint32_t thread_count; + uint32_t processor_start; + uint32_t processor_count; }; struct cpuinfo_package { - uint32_t thread_start; - uint32_t thread_count; + uint32_t processor_start; + uint32_t processor_count; uint32_t core_count; #if CPUINFO_ARCH_X86 || CPUINFO_ARCH_X86_64 struct cpuinfo_x86_model_info model_info; -- cgit v1.2.3