summaryrefslogtreecommitdiff
path: root/src/gc/gcenv.ee.standalone.inl
diff options
context:
space:
mode:
authorSean Gillespie <segilles@microsoft.com>2017-12-12 19:04:07 -0800
committerSean Gillespie <segilles@microsoft.com>2017-12-12 19:04:07 -0800
commit8df01f50ca980ab8840124c74037782f75702032 (patch)
tree67632498038f401758197663622b1f32a4603eeb /src/gc/gcenv.ee.standalone.inl
parent3a295a078701f72edc18a4404cab7b7e1bc104c7 (diff)
downloadcoreclr-8df01f50ca980ab8840124c74037782f75702032.tar.gz
coreclr-8df01f50ca980ab8840124c74037782f75702032.tar.bz2
coreclr-8df01f50ca980ab8840124c74037782f75702032.zip
Revert "[Local GC] Move knowledge of overlapped I/O objects to the EE through four callbacks (#14982)"
This reverts commit c755e3b7f5d597c8d192675dbaaa337268d93f1c.
Diffstat (limited to 'src/gc/gcenv.ee.standalone.inl')
-rw-r--r--src/gc/gcenv.ee.standalone.inl11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/gc/gcenv.ee.standalone.inl b/src/gc/gcenv.ee.standalone.inl
index c114b33e9f..a9e45c953b 100644
--- a/src/gc/gcenv.ee.standalone.inl
+++ b/src/gc/gcenv.ee.standalone.inl
@@ -258,16 +258,5 @@ inline bool GCToEEInterface::CreateThread(void (*threadStart)(void*), void* arg,
return g_theGCToCLR->CreateThread(threadStart, arg, is_suspendable, name);
}
-inline void GCToEEInterface::WalkAsyncPinnedForPromotion(Object* object, ScanContext* sc, promote_func* callback)
-{
- assert(g_theGCToCLR != nullptr);
- return g_theGCToCLR->WalkAsyncPinnedForPromotion(object, sc, callback);
-}
-
-inline void GCToEEInterface::WalkAsyncPinned(Object* object, void* context, void(*callback)(Object*, Object*, void*))
-{
- assert(g_theGCToCLR != nullptr);
- return g_theGCToCLR->WalkAsyncPinned(object, context, callback);
-}
#endif // __GCTOENV_EE_STANDALONE_INL__