diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-15 09:25:11 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-15 14:15:56 -0400 |
commit | 5484742fdaf036db03ac7b8c746df5004f74efad (patch) | |
tree | 71f2f25319773fa718ade73b59fccccfbceedb12 /src/core/core.h | |
parent | 59f872a8e06328da18c7fb1948aec76355afb567 (diff) |
core_cpu: Make Cpu scheduler instances unique_ptrs instead of shared_ptrs
Diffstat (limited to 'src/core/core.h')
-rw-r--r-- | src/core/core.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/core/core.h b/src/core/core.h index ea4d539142..173be45f87 100644 --- a/src/core/core.h +++ b/src/core/core.h @@ -156,6 +156,9 @@ public: /// Gets a CPU interface to the CPU core with the specified index Cpu& CpuCore(std::size_t core_index); + /// Gets a CPU interface to the CPU core with the specified index + const Cpu& CpuCore(std::size_t core_index) const; + /// Gets the exclusive monitor ExclusiveMonitor& Monitor(); @@ -172,7 +175,10 @@ public: const VideoCore::RendererBase& Renderer() const; /// Gets the scheduler for the CPU core with the specified index - const std::shared_ptr<Kernel::Scheduler>& Scheduler(std::size_t core_index); + Kernel::Scheduler& Scheduler(std::size_t core_index); + + /// Gets the scheduler for the CPU core with the specified index + const Kernel::Scheduler& Scheduler(std::size_t core_index) const; /// Provides a pointer to the current process Kernel::Process* CurrentProcess(); |