summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-07-16 13:24:22 -0400
committerLioncash <mathew1800@gmail.com>2020-07-16 13:24:25 -0400
commit51546ce57eea6cfe22024bc20473b5e80768884a (patch)
tree888be7fd4a846f4511e899be842baa239ae04881 /src/core
parent201514cb507257630b290000b8ea894f5403ce2f (diff)
cpu_manager: Remove unused preemption_count variable
Shrinks the data structure by 8 bytes.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/cpu_manager.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/cpu_manager.h b/src/core/cpu_manager.h
index d685674bb..33fb43cfa 100644
--- a/src/core/cpu_manager.h
+++ b/src/core/cpu_manager.h
@@ -100,7 +100,6 @@ private:
bool is_async_gpu{};
bool is_multicore{};
std::atomic<std::size_t> current_core{};
- std::size_t preemption_count{};
std::size_t idle_count{};
static constexpr std::size_t max_cycle_runs = 5;