summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_thread.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-08-14 11:14:19 +0200
committerbunnei <bunneidev@gmail.com>2021-12-07 01:39:17 +0100
commit3dc803a430107fb22ffc91608c613e09ec5c8b51 (patch)
treef8d5a747cf9d89befd89beec16bdc116d2725fe8 /src/core/hle/kernel/k_thread.cpp
parentcore: hle: kernel: k_thread: Mark KScopedDisableDispatch as nodiscard. (diff)
downloadyuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.gz
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.bz2
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.lz
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.xz
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.tar.zst
yuzu-3dc803a430107fb22ffc91608c613e09ec5c8b51.zip
Diffstat (limited to 'src/core/hle/kernel/k_thread.cpp')
-rw-r--r--src/core/hle/kernel/k_thread.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_thread.cpp b/src/core/hle/kernel/k_thread.cpp
index de94c737d..41bf9a6bb 100644
--- a/src/core/hle/kernel/k_thread.cpp
+++ b/src/core/hle/kernel/k_thread.cpp
@@ -13,6 +13,9 @@
#include "common/common_types.h"
#include "common/fiber.h"
#include "common/logging/log.h"
+#include "common/scope_exit.h"
+#include "common/settings.h"
+#include "common/thread_queue_list.h"
#include "core/core.h"
#include "core/cpu_manager.h"
#include "core/hardware_properties.h"
@@ -211,9 +214,10 @@ ResultCode KThread::InitializeThread(KThread* thread, KThreadFunction func, uint
// Initialize the thread.
R_TRY(thread->Initialize(func, arg, user_stack_top, prio, core, owner, type));
- // Initialize host context.
+ // Initialize emulation parameters.
thread->host_context =
std::make_shared<Common::Fiber>(std::move(init_func), init_func_parameter);
+ thread->is_single_core = !Settings::values.use_multi_core.GetValue();
return ResultSuccess;
}