diff options
| author | 2016-05-08 15:03:08 -0400 | |
|---|---|---|
| committer | 2016-05-08 15:03:08 -0400 | |
| commit | 282a2ad539223d61067a1957fab8c45571075987 (patch) | |
| tree | 1adb819b34340de4395ada46ac6b089cdf121b4a /src/core/loader/ncch.cpp | |
| parent | Merge pull request #1718 from alex-laties/fixup-type-conversions (diff) | |
| parent | Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1). (diff) | |
| download | yuzu-282a2ad539223d61067a1957fab8c45571075987.tar.gz yuzu-282a2ad539223d61067a1957fab8c45571075987.tar.xz yuzu-282a2ad539223d61067a1957fab8c45571075987.zip | |
Merge pull request #1766 from Subv/log_cpu
Kernel/Threading: Warn when a thread can be scheduled in the Syscore (Core 1)
Diffstat (limited to 'src/core/loader/ncch.cpp')
| -rw-r--r-- | src/core/loader/ncch.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/loader/ncch.cpp b/src/core/loader/ncch.cpp index d362a4419..7391bdb26 100644 --- a/src/core/loader/ncch.cpp +++ b/src/core/loader/ncch.cpp | |||
| @@ -156,6 +156,9 @@ ResultStatus AppLoader_NCCH::LoadExec() { | |||
| 156 | Kernel::g_current_process->resource_limit = Kernel::ResourceLimit::GetForCategory( | 156 | Kernel::g_current_process->resource_limit = Kernel::ResourceLimit::GetForCategory( |
| 157 | static_cast<Kernel::ResourceLimitCategory>(exheader_header.arm11_system_local_caps.resource_limit_category)); | 157 | static_cast<Kernel::ResourceLimitCategory>(exheader_header.arm11_system_local_caps.resource_limit_category)); |
| 158 | 158 | ||
| 159 | // Set the default CPU core for this process | ||
| 160 | Kernel::g_current_process->ideal_processor = exheader_header.arm11_system_local_caps.ideal_processor; | ||
| 161 | |||
| 159 | // Copy data while converting endianess | 162 | // Copy data while converting endianess |
| 160 | std::array<u32, ARRAY_SIZE(exheader_header.arm11_kernel_caps.descriptors)> kernel_caps; | 163 | std::array<u32, ARRAY_SIZE(exheader_header.arm11_kernel_caps.descriptors)> kernel_caps; |
| 161 | std::copy_n(exheader_header.arm11_kernel_caps.descriptors, kernel_caps.size(), begin(kernel_caps)); | 164 | std::copy_n(exheader_header.arm11_kernel_caps.descriptors, kernel_caps.size(), begin(kernel_caps)); |