summaryrefslogtreecommitdiff
path: root/src/vm/eeconfig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vm/eeconfig.cpp')
-rw-r--r--src/vm/eeconfig.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/vm/eeconfig.cpp b/src/vm/eeconfig.cpp
index 81f3957951..2ec6d39cdd 100644
--- a/src/vm/eeconfig.cpp
+++ b/src/vm/eeconfig.cpp
@@ -235,25 +235,15 @@ HRESULT EEConfig::Init()
fLegacyComVTableLayout = false;
fLegacyVirtualMethodCallVerification = false;
fNewComVTableLayout = false;
- iImpersonationPolicy = IMP_DEFAULT;
#ifdef FEATURE_CORRUPTING_EXCEPTIONS
// By default, there is not pre-V4 CSE policy
fLegacyCorruptedStateExceptionsPolicy = false;
#endif // FEATURE_CORRUPTING_EXCEPTIONS
-#ifdef _DEBUG
- fLogTransparencyErrors = false;
-#endif // _DEBUG
- fLegacyLoadMscorsnOnStartup = false;
- fBypassStrongNameVerification = true;
- fGeneratePublisherEvidence = true;
- fEnforceFIPSPolicy = true;
- fLegacyHMACMode = false;
fNgenBindOptimizeNonGac = false;
fStressLog = false;
fCacheBindingFailures = true;
- fDisableFusionUpdatesFromADManager = false;
fDisableCommitThreadStack = false;
fProbeForStackOverflow = true;
@@ -293,9 +283,6 @@ HRESULT EEConfig::Init()
// LS in DAC builds. Initialized via the environment variable TestDataConsistency
fTestDataConsistency = false;
#endif
-
- // TlbImp Stuff
- fTlbImpSkipLoading = false;
// In Thread::SuspendThread(), default the timeout to 2 seconds. If the suspension
// takes longer, assert (but keep trying).
@@ -1105,11 +1092,6 @@ HRESULT EEConfig::sync()
fJitVerificationDisable = (GetConfigDWORD_DontUse_(CLRConfig::INTERNAL_JitVerificationDisable, fJitVerificationDisable) != 0);
- fLogTransparencyErrors = CLRConfig::GetConfigValue(CLRConfig::UNSUPPORTED_Security_LogTransparencyErrors) != 0;
-
- // TlbImp stuff
- fTlbImpSkipLoading = (GetConfigDWORD_DontUse_(CLRConfig::INTERNAL_TlbImpSkipLoading, fTlbImpSkipLoading) != 0);
-
iExposeExceptionsInCOM = GetConfigDWORD_DontUse_(CLRConfig::INTERNAL_ExposeExceptionsInCOM, iExposeExceptionsInCOM);
#endif
@@ -1381,19 +1363,6 @@ HRESULT EEConfig::GetConfiguration_DontUse_(__in_z LPCWSTR pKey, ConfigSearch di
}
}
-LPCWSTR EEConfig::GetProcessBindingFile()
-{
- LIMITED_METHOD_CONTRACT;
- return g_pszHostConfigFile;
-}
-
-SIZE_T EEConfig::GetSizeOfProcessBindingFile()
-{
- LIMITED_METHOD_CONTRACT;
- return g_dwHostConfigFile;
-}
-
-
bool EEConfig::RequireZap(LPCUTF8 assemblyName) const
{
LIMITED_METHOD_CONTRACT;