summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/kernel.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-01-31 00:19:21 +0100
committerLioncash <mathew1800@gmail.com>2020-01-31 00:29:57 +0100
commit51927bc9dc191165403203a146bd21fecd704691 (patch)
tree457c292a237e704bf08c218e3757cc2a00d19c4c /src/core/hle/kernel/kernel.cpp
parentMerge pull request #3353 from FernandoS27/aries (diff)
downloadyuzu-51927bc9dc191165403203a146bd21fecd704691.tar
yuzu-51927bc9dc191165403203a146bd21fecd704691.tar.gz
yuzu-51927bc9dc191165403203a146bd21fecd704691.tar.bz2
yuzu-51927bc9dc191165403203a146bd21fecd704691.tar.lz
yuzu-51927bc9dc191165403203a146bd21fecd704691.tar.xz
yuzu-51927bc9dc191165403203a146bd21fecd704691.tar.zst
yuzu-51927bc9dc191165403203a146bd21fecd704691.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/kernel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/kernel.cpp b/src/core/hle/kernel/kernel.cpp
index 0cf3c8f70..edd4c4259 100644
--- a/src/core/hle/kernel/kernel.cpp
+++ b/src/core/hle/kernel/kernel.cpp
@@ -101,7 +101,7 @@ struct KernelCore::Impl {
void Initialize(KernelCore& kernel) {
Shutdown();
- InitializePhysicalCores(kernel);
+ InitializePhysicalCores();
InitializeSystemResourceLimit(kernel);
InitializeThreads();
InitializePreemption();
@@ -131,14 +131,14 @@ struct KernelCore::Impl {
}
cores.clear();
- exclusive_monitor.reset(nullptr);
+ exclusive_monitor.reset();
}
- void InitializePhysicalCores(KernelCore& kernel) {
+ void InitializePhysicalCores() {
exclusive_monitor =
Core::MakeExclusiveMonitor(system.Memory(), global_scheduler.CpuCoresCount());
for (std::size_t i = 0; i < global_scheduler.CpuCoresCount(); i++) {
- cores.emplace_back(system, kernel, i, *exclusive_monitor);
+ cores.emplace_back(system, i, *exclusive_monitor);
}
}