diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-16 11:21:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 11:21:42 -0400 |
commit | 88b8383da28f05b2a30ba853b0578fe625f7dba6 (patch) | |
tree | f9224c0af9d0ddcc1e2496b638a6108077fcd198 /src/core/core.h | |
parent | 59c1ca8b0c0051a63d57ccb433a96909acf8000c (diff) | |
parent | 5484742fdaf036db03ac7b8c746df5004f74efad (diff) |
Merge pull request #1502 from lioncash/unique
core: Convert shared_ptr instances into unique_ptr instances where applicable for System and Cpu
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 ea4d53914..173be45f8 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(); |