summaryrefslogtreecommitdiff
path: root/src/vm/ecalllist.h
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-12-03 16:11:29 -0800
committerGitHub <noreply@github.com>2018-12-03 16:11:29 -0800
commit3b47496ef2656333684526cf71478253a207c1a5 (patch)
tree72bc3933479a1e6d45b62a87ff4a200663a878fe /src/vm/ecalllist.h
parent248449d08f5436fbeb140a6011e412f2fea4621f (diff)
downloadcoreclr-3b47496ef2656333684526cf71478253a207c1a5.tar.gz
coreclr-3b47496ef2656333684526cf71478253a207c1a5.tar.bz2
coreclr-3b47496ef2656333684526cf71478253a207c1a5.zip
Refactor all FCalls out of AppDomain.cs (#21337)
This saves the unmanaged->managed->unmanaged trip to initialize the assembly binder. Includes small bits of unrelated cleanup.
Diffstat (limited to 'src/vm/ecalllist.h')
-rw-r--r--src/vm/ecalllist.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/vm/ecalllist.h b/src/vm/ecalllist.h
index 91ca5e019d..04c9fba8ba 100644
--- a/src/vm/ecalllist.h
+++ b/src/vm/ecalllist.h
@@ -439,23 +439,6 @@ FCFuncStart(gCompatibilitySwitchFuncs)
FCFuncElement("GetValueInternalCall", CompatibilitySwitch::GetValue)
FCFuncEnd()
-FCFuncStart(gAppDomainFuncs)
- FCFuncElement("nSetupFriendlyName", AppDomainNative::SetupFriendlyName)
- FCFuncElement("GetId", AppDomainNative::GetId)
- QCFuncElement("nSetupBindingPaths", AppDomainNative::SetupBindingPaths)
- QCFuncElement("nSetNativeDllSearchDirectories", AppDomainNative::SetNativeDllSearchDirectories)
- FCFuncElement("PublishAnonymouslyHostedDynamicMethodsAssembly", AppDomainNative::PublishAnonymouslyHostedDynamicMethodsAssembly)
-#ifdef FEATURE_APPDOMAIN_RESOURCE_MONITORING
- FCFuncElement("nEnableMonitoring", AppDomainNative::EnableMonitoring)
- FCFuncElement("nMonitoringIsEnabled", AppDomainNative::MonitoringIsEnabled)
- FCFuncElement("nGetTotalProcessorTime", AppDomainNative::GetTotalProcessorTime)
- FCFuncElement("nGetTotalAllocatedMemorySize", AppDomainNative::GetTotalAllocatedMemorySize)
- FCFuncElement("nGetLastSurvivedMemorySize", AppDomainNative::GetLastSurvivedMemorySize)
- FCFuncElement("nGetLastSurvivedProcessMemorySize", AppDomainNative::GetLastSurvivedProcessMemorySize)
-
-#endif //FEATURE_APPDOMAIN_RESOURCE_MONITORING
-FCFuncEnd()
-
#ifdef FEATURE_APPX
FCFuncStart(gApplicationModelFuncs)
QCFuncElement("IsAppXProcess", AppDomainNative::IsAppXProcess)
@@ -1238,7 +1221,6 @@ FCFuncEnd()
// Note these have to remain sorted by name:namespace pair (Assert will wack you if you don't)
// The sorting is case-sensitive
-FCClassElement("AppDomain", "System", gAppDomainFuncs)
#ifdef FEATURE_APPX
FCClassElement("ApplicationModel", "System", gApplicationModelFuncs)
#endif