summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Lioncash2020-07-16 13:24:22 -0400
committerGravatar Lioncash2020-07-16 13:24:25 -0400
commit51546ce57eea6cfe22024bc20473b5e80768884a (patch)
tree888be7fd4a846f4511e899be842baa239ae04881
parentcpu_manager: Add missing includes (diff)
downloadyuzu-51546ce57eea6cfe22024bc20473b5e80768884a.tar.gz
yuzu-51546ce57eea6cfe22024bc20473b5e80768884a.tar.xz
yuzu-51546ce57eea6cfe22024bc20473b5e80768884a.zip
cpu_manager: Remove unused preemption_count variable
Shrinks the data structure by 8 bytes.
-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:
100 bool is_async_gpu{}; 100 bool is_async_gpu{};
101 bool is_multicore{}; 101 bool is_multicore{};
102 std::atomic<std::size_t> current_core{}; 102 std::atomic<std::size_t> current_core{};
103 std::size_t preemption_count{};
104 std::size_t idle_count{}; 103 std::size_t idle_count{};
105 static constexpr std::size_t max_cycle_runs = 5; 104 static constexpr std::size_t max_cycle_runs = 5;
106 105