diff options
author | Kevin Hartman <kevin@hart.mn> | 2015-01-07 07:07:29 +0100 |
---|---|---|
committer | Kevin Hartman <kevin@hart.mn> | 2015-01-07 23:14:48 +0100 |
commit | 63be6aaadd7860dd7be587c8196eb1063b0a6b3c (patch) | |
tree | 1cea79e877e7ccebf91d10f8445e8d3773bb3b18 | |
parent | Merge pull request #421 from linkmauve/remove-dead-platforms (diff) | |
download | yuzu-63be6aaadd7860dd7be587c8196eb1063b0a6b3c.tar yuzu-63be6aaadd7860dd7be587c8196eb1063b0a6b3c.tar.gz yuzu-63be6aaadd7860dd7be587c8196eb1063b0a6b3c.tar.bz2 yuzu-63be6aaadd7860dd7be587c8196eb1063b0a6b3c.tar.lz yuzu-63be6aaadd7860dd7be587c8196eb1063b0a6b3c.tar.xz yuzu-63be6aaadd7860dd7be587c8196eb1063b0a6b3c.tar.zst yuzu-63be6aaadd7860dd7be587c8196eb1063b0a6b3c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/svc.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp index c25409a9f..2b948d016 100644 --- a/src/core/hle/svc.cpp +++ b/src/core/hle/svc.cpp @@ -237,6 +237,11 @@ static Result CreateThread(u32 priority, u32 entry_point, u32 arg, u32 stack_top "threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X", entry_point, name.c_str(), arg, stack_top, priority, processor_id, thread); + if (THREADPROCESSORID_1 == processor_id) { + LOG_WARNING(Kernel_SVC, + "thread designated for system CPU core (UNIMPLEMENTED) will be run with app core scheduling"); + } + return 0; } |