summaryrefslogtreecommitdiff
path: root/src/core/hle/svc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/svc.cpp')
-rw-r--r--src/core/hle/svc.cpp5
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
237 "threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X", entry_point, 237 "threadpriority=0x%08X, processorid=0x%08X : created handle=0x%08X", entry_point,
238 name.c_str(), arg, stack_top, priority, processor_id, thread); 238 name.c_str(), arg, stack_top, priority, processor_id, thread);
239 239
240 if (THREADPROCESSORID_1 == processor_id) {
241 LOG_WARNING(Kernel_SVC,
242 "thread designated for system CPU core (UNIMPLEMENTED) will be run with app core scheduling");
243 }
244
240 return 0; 245 return 0;
241} 246}
242 247