From 0c106e0238c1dd08abda2ef13e25811aa9a11eaa Mon Sep 17 00:00:00 2001 From: Niko Date: Wed, 4 Sep 2024 21:52:22 -0400 Subject: [PATCH] remove stub-out for SetTcbBase --- src/core/linker.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/linker.cpp b/src/core/linker.cpp index 8fada96f4..45a09397b 100644 --- a/src/core/linker.cpp +++ b/src/core/linker.cpp @@ -119,9 +119,7 @@ void Linker::Execute() { } } - #ifdef __x86_64__ SetTcbBase(nullptr); - #endif } s32 Linker::LoadModule(const std::filesystem::path& elf_name, bool is_dynamic) { @@ -409,10 +407,8 @@ void Linker::InitTlsForThread(bool is_primary) { tcb->tcb_dtv[module->tls.modid + 1].pointer = dest; } - #ifdef __x86_64__ // Set pointer to FS base SetTcbBase(tcb); - #endif } void Linker::DebugDump() {