From 27a25bd37fa1fe6201c27709b1884e1b328f8beb Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Wed, 11 Oct 2017 13:04:43 -0700 Subject: Delete !FEATURE_IMPLICIT_TLS (#14398) Linux and Windows arm64 are using the regular C/C++ thread local statics. This change unifies the remaining Windows architectures to be on the same plan. --- src/vm/ceemain.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/vm/ceemain.h') diff --git a/src/vm/ceemain.h b/src/vm/ceemain.h index ccf763ac80..9a14af54ca 100644 --- a/src/vm/ceemain.h +++ b/src/vm/ceemain.h @@ -83,8 +83,6 @@ public: // Setup FLS simulation block, including ClrDebugState and StressLog. static void SetupTLSForThread(Thread *pThread); - static DWORD GetTlsIndex () {return TlsIndex;} - static LPVOID* GetTlsData(); static BOOL SetTlsData (void** ppTlsInfo); @@ -92,12 +90,6 @@ public: // private implementation: //*************************************************************************** private: - - // The debugger needs access to the TlsIndex so that we can read it from OOP. - friend class EEDbgInterfaceImpl; - - SVAL_DECL (DWORD, TlsIndex); - static PTLS_CALLBACK_FUNCTION Callbacks[MAX_PREDEFINED_TLS_SLOT]; //*************************************************************************** -- cgit v1.2.3