diff options
author | bunnei <bunneidev@gmail.com> | 2018-05-08 03:57:42 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-05-11 01:34:52 +0200 |
commit | 4822765fefbb81ad55fe4db7561ccf69b9a60bcd (patch) | |
tree | 54d357b8493384b331fbfd1fbbdeadfff72f97b6 | |
parent | threading: Reschedule only on cores that are necessary. (diff) | |
download | yuzu-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 |
-rw-r--r-- | src/core/hle/kernel/thread.cpp | 2 |
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; |