summaryrefslogtreecommitdiff
path: root/src/vm/threads.inl
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/threads.inl
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/threads.inl')
-rw-r--r--src/vm/threads.inl11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/vm/threads.inl b/src/vm/threads.inl
index ee2aaacf94..f5a439c350 100644
--- a/src/vm/threads.inl
+++ b/src/vm/threads.inl
@@ -22,7 +22,6 @@
#include "frames.h"
#ifndef DACCESS_COMPILE
-#ifdef FEATURE_IMPLICIT_TLS
#ifndef __llvm__
EXTERN_C __declspec(thread) ThreadLocalInfo gCurrentThreadInfo;
@@ -40,18 +39,8 @@ EXTERN_C inline AppDomain* STDCALL GetAppDomain()
return gCurrentThreadInfo.m_pAppDomain;
}
-#endif // FEATURE_IMPLICIT_TLS
#endif // !DACCESS_COMPILE
-#ifdef ENABLE_GET_THREAD_GENERIC_FULL_CHECK
-// See code:GetThreadGenericFullCheck
-inline /* static */ BOOL Thread::ShouldEnforceEEThreadNotRequiredContracts()
-{
- LIMITED_METHOD_CONTRACT;
- return s_fEnforceEEThreadNotRequiredContracts;
-}
-#endif // ENABLE_GET_THREAD_GENERIC_FULL_CHECK
-
inline void Thread::IncLockCount()
{
LIMITED_METHOD_CONTRACT;