Initialize patch stack before thread TLS.

This commit is contained in:
squidbus 2024-08-30 04:42:40 -07:00
parent 0f87d1e3d4
commit 6e552aac6a
2 changed files with 2 additions and 2 deletions

View file

@ -994,8 +994,8 @@ static void* run_thread(void* arg) {
auto* thread = static_cast<ScePthread>(arg);
Common::SetCurrentThreadName(thread->name.c_str());
auto* linker = Common::Singleton<Core::Linker>::Instance();
linker->InitTlsForThread(false);
Core::InitializeThreadPatchStack();
linker->InitTlsForThread(false);
void* ret = nullptr;
g_pthread_self = thread;
pthread_cleanup_push(cleanup_thread, thread);