mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-29 14:53:18 +00:00
Initialize patch stack before thread TLS.
This commit is contained in:
parent
0f87d1e3d4
commit
6e552aac6a
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue