summaryrefslogtreecommitdiff
path: root/src/core/core_cpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/core_cpu.cpp')
-rw-r--r--src/core/core_cpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_cpu.cpp b/src/core/core_cpu.cpp
index 6bdfdd7df..a556f12e9 100644
--- a/src/core/core_cpu.cpp
+++ b/src/core/core_cpu.cpp
@@ -33,7 +33,7 @@ Cpu::Cpu(std::shared_ptr<CpuBarrier> cpu_barrier, size_t core_index)
33 arm_interface = std::make_shared<ARM_Unicorn>(); 33 arm_interface = std::make_shared<ARM_Unicorn>();
34 } 34 }
35 35
36 scheduler = std::make_unique<Kernel::Scheduler>(arm_interface.get()); 36 scheduler = std::make_shared<Kernel::Scheduler>(arm_interface.get());
37} 37}
38 38
39void Cpu::RunLoop(bool tight_loop) { 39void Cpu::RunLoop(bool tight_loop) {