diff options
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index b7b9259ec..eba17218a 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -409,6 +409,12 @@ void System::PrepareReschedule() { | |||
| 409 | CurrentCpuCore().PrepareReschedule(); | 409 | CurrentCpuCore().PrepareReschedule(); |
| 410 | } | 410 | } |
| 411 | 411 | ||
| 412 | void System::PrepareReschedule(const u32 core_index) { | ||
| 413 | if (core_index < GlobalScheduler().CpuCoresCount()) { | ||
| 414 | CpuCore(core_index).PrepareReschedule(); | ||
| 415 | } | ||
| 416 | } | ||
| 417 | |||
| 412 | PerfStatsResults System::GetAndResetPerfStats() { | 418 | PerfStatsResults System::GetAndResetPerfStats() { |
| 413 | return impl->GetAndResetPerfStats(); | 419 | return impl->GetAndResetPerfStats(); |
| 414 | } | 420 | } |
| @@ -449,6 +455,16 @@ const Kernel::Scheduler& System::Scheduler(std::size_t core_index) const { | |||
| 449 | return CpuCore(core_index).Scheduler(); | 455 | return CpuCore(core_index).Scheduler(); |
| 450 | } | 456 | } |
| 451 | 457 | ||
| 458 | /// Gets the global scheduler | ||
| 459 | Kernel::GlobalScheduler& System::GlobalScheduler() { | ||
| 460 | return impl->kernel.GlobalScheduler(); | ||
| 461 | } | ||
| 462 | |||
| 463 | /// Gets the global scheduler | ||
| 464 | const Kernel::GlobalScheduler& System::GlobalScheduler() const { | ||
| 465 | return impl->kernel.GlobalScheduler(); | ||
| 466 | } | ||
| 467 | |||
| 452 | Kernel::Process* System::CurrentProcess() { | 468 | Kernel::Process* System::CurrentProcess() { |
| 453 | return impl->kernel.CurrentProcess(); | 469 | return impl->kernel.CurrentProcess(); |
| 454 | } | 470 | } |