summaryrefslogtreecommitdiff
path: root/src/vm/ceemain.h
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-10-11 13:04:43 -0700
committerGitHub <noreply@github.com>2017-10-11 13:04:43 -0700
commit27a25bd37fa1fe6201c27709b1884e1b328f8beb (patch)
tree18b7773a7d8e18cca609417940804d8dff491da2 /src/vm/ceemain.h
parentd07f1b24c4a69e6a205f8510f3dcfae0ad96aae8 (diff)
downloadcoreclr-27a25bd37fa1fe6201c27709b1884e1b328f8beb.tar.gz
coreclr-27a25bd37fa1fe6201c27709b1884e1b328f8beb.tar.bz2
coreclr-27a25bd37fa1fe6201c27709b1884e1b328f8beb.zip
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.
Diffstat (limited to 'src/vm/ceemain.h')
-rw-r--r--src/vm/ceemain.h8
1 files changed, 0 insertions, 8 deletions
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];
//***************************************************************************