summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/thread.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-05-08 03:57:42 +0200
committerbunnei <bunneidev@gmail.com>2018-05-11 01:34:52 +0200
commit4822765fefbb81ad55fe4db7561ccf69b9a60bcd (patch)
tree54d357b8493384b331fbfd1fbbdeadfff72f97b6 /src/core/hle/kernel/thread.cpp
parentthreading: Reschedule only on cores that are necessary. (diff)
downloadyuzu-4822765fefbb81ad55fe4db7561ccf69b9a60bcd.tar
yuzu-4822765fefbb81ad55fe4db7561ccf69b9a60bcd.tar.gz
yuzu-4822765fefbb81ad55fe4db7561ccf69b9a60bcd.tar.bz2
yuzu-4822765fefbb81ad55fe4db7561ccf69b9a60bcd.tar.lz
yuzu-4822765fefbb81ad55fe4db7561ccf69b9a60bcd.tar.xz
yuzu-4822765fefbb81ad55fe4db7561ccf69b9a60bcd.tar.zst
yuzu-4822765fefbb81ad55fe4db7561ccf69b9a60bcd.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/thread.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.cpp b/src/core/hle/kernel/thread.cpp
index 31cf1551d..ac6252eac 100644
--- a/src/core/hle/kernel/thread.cpp
+++ b/src/core/hle/kernel/thread.cpp
@@ -266,6 +266,8 @@ ResultVal<SharedPtr<Thread>> Thread::Create(std::string name, VAddr entry_point,
thread->nominal_priority = thread->current_priority = priority;
thread->last_running_ticks = CoreTiming::GetTicks();
thread->processor_id = processor_id;
+ thread->ideal_core = processor_id;
+ thread->mask = 1 << processor_id;
thread->wait_objects.clear();
thread->mutex_wait_address = 0;
thread->condvar_wait_address = 0;