diff options
| author | 2017-03-15 21:17:43 -0400 | |
|---|---|---|
| committer | 2017-03-15 21:17:43 -0400 | |
| commit | 709e4fa5d25c11ec73b3c8662756fbf692ee0383 (patch) | |
| tree | bfc7e9761bc6f14f8947f0d4eed55d2158a9f2ed | |
| parent | Merge pull request #2625 from wwylele/hash-console-unique (diff) | |
| parent | Refined thread launch on syscore error messages (diff) | |
| download | yuzu-709e4fa5d25c11ec73b3c8662756fbf692ee0383.tar.gz yuzu-709e4fa5d25c11ec73b3c8662756fbf692ee0383.tar.xz yuzu-709e4fa5d25c11ec73b3c8662756fbf692ee0383.zip | |
Merge pull request #2620 from FernandoS27/syscore_error
Refined thread launch on syscore error messages
| -rw-r--r-- | src/core/hle/svc.cpp | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index 1baa80671..4e0c3fb8b 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp | |||
| @@ -556,11 +556,21 @@ static ResultCode CreateThread(Kernel::Handle* out_handle, s32 priority, u32 ent | |||
| 556 | break; | 556 | break; |
| 557 | } | 557 | } |
| 558 | 558 | ||
| 559 | if (processor_id == THREADPROCESSORID_1 || processor_id == THREADPROCESSORID_ALL || | 559 | if (processor_id == THREADPROCESSORID_ALL) { |
| 560 | (processor_id == THREADPROCESSORID_DEFAULT && | 560 | LOG_INFO(Kernel_SVC, |
| 561 | Kernel::g_current_process->ideal_processor == THREADPROCESSORID_1)) { | 561 | "Newly created thread is allowed to be run in any Core, unimplemented."); |
| 562 | LOG_WARNING(Kernel_SVC, | 562 | } |
| 563 | "Newly created thread is allowed to be run in the SysCore, unimplemented."); | 563 | |
| 564 | if (processor_id == THREADPROCESSORID_DEFAULT && | ||
| 565 | Kernel::g_current_process->ideal_processor == THREADPROCESSORID_1) { | ||
| 566 | LOG_WARNING( | ||
| 567 | Kernel_SVC, | ||
| 568 | "Newly created thread is allowed to be run in the SysCore (Core1), unimplemented."); | ||
| 569 | } | ||
| 570 | |||
| 571 | if (processor_id == THREADPROCESSORID_1) { | ||
| 572 | LOG_ERROR(Kernel_SVC, | ||
| 573 | "Newly created thread must run in the SysCore (Core1), unimplemented."); | ||
| 564 | } | 574 | } |
| 565 | 575 | ||
| 566 | CASCADE_RESULT(SharedPtr<Thread> thread, Kernel::Thread::Create(name, entry_point, priority, | 576 | CASCADE_RESULT(SharedPtr<Thread> thread, Kernel::Thread::Create(name, entry_point, priority, |