summaryrefslogtreecommitdiff
path: root/src/vm/appdomain.inl
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2018-12-10 02:57:57 -0800
committerJan Vorlicek <janvorli@microsoft.com>2018-12-10 11:57:57 +0100
commit49ca3db92a48da71d25c607af9716a30bafb3ff8 (patch)
treeedef4dd6526f291d37ad7dc783b52c124e834634 /src/vm/appdomain.inl
parentbc03ef9aeb467950f181a2e2d53fe4b92a98d0c9 (diff)
downloadcoreclr-49ca3db92a48da71d25c607af9716a30bafb3ff8.tar.gz
coreclr-49ca3db92a48da71d25c607af9716a30bafb3ff8.tar.bz2
coreclr-49ca3db92a48da71d25c607af9716a30bafb3ff8.zip
Delete vm/context.* (#21459)
* Delete vm/context.* Leftover from remoting
Diffstat (limited to 'src/vm/appdomain.inl')
-rw-r--r--src/vm/appdomain.inl15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/vm/appdomain.inl b/src/vm/appdomain.inl
index d2a87ed08c..9b3c563f07 100644
--- a/src/vm/appdomain.inl
+++ b/src/vm/appdomain.inl
@@ -19,21 +19,6 @@
#include "appdomain.hpp"
-inline void AppDomain::EnterContext(Thread* pThread, Context* pCtx,ContextTransitionFrame *pFrame)
-{
- CONTRACTL
- {
- GC_NOTRIGGER;
- MODE_COOPERATIVE;
- PRECONDITION(CheckPointer(pThread));
- PRECONDITION(CheckPointer(pCtx));
- PRECONDITION(CheckPointer(pFrame));
- PRECONDITION(pCtx->GetDomain()==this);
- }
- CONTRACTL_END;
- pThread->EnterContextRestricted(pCtx,pFrame);
-};
-
inline DomainAssembly* AppDomain::FindDomainAssembly(Assembly* assembly)
{
CONTRACTL