Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Mosier <smosier@microsoft.com>2015-10-07 02:58:31 +0300
committerScott Mosier <smosier@microsoft.com>2015-10-14 20:50:31 +0300
commit9ceafad81f9c68f16c6be2e11ff609ce9f228ae9 (patch)
tree5e5261ee6db73c8ee94177d526388105d93aaa01 /src/Native/Runtime/HandleTableHelpers.cpp
parent7f6ab60a6a659a9ab5f2f4230ba465c09f673036 (diff)
Partially hooked up GC sources to Runtime sources. Finalizer code is not yet hooked up.
Diffstat (limited to 'src/Native/Runtime/HandleTableHelpers.cpp')
-rw-r--r--src/Native/Runtime/HandleTableHelpers.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Native/Runtime/HandleTableHelpers.cpp b/src/Native/Runtime/HandleTableHelpers.cpp
index 7f84e093a..d9e1e7ecb 100644
--- a/src/Native/Runtime/HandleTableHelpers.cpp
+++ b/src/Native/Runtime/HandleTableHelpers.cpp
@@ -10,10 +10,14 @@
// binder has special knowledge of these methods and doesn't generate the normal code to transition out of the
// runtime prior to the call.
//
-
-#include "gcrhenv.h"
+#include "common.h"
+#include "gcenv.h"
+#include "objecthandle.h"
+#include "commontypes.h"
+#include "commonmacros.h"
#include "restrictedcallouts.h"
+
COOP_PINVOKE_HELPER(OBJECTHANDLE, RhpHandleAlloc, (Object *pObject, int type))
{
return CreateTypedHandle(g_HandleTableMap.pBuckets[0]->pTable[GetCurrentThreadHomeHeapNumber()], pObject, type);