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:
Diffstat (limited to 'src/Native/Bootstrap/main.cpp')
-rw-r--r--src/Native/Bootstrap/main.cpp16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/Native/Bootstrap/main.cpp b/src/Native/Bootstrap/main.cpp
index bbeff8c9c..e3c1a2fc9 100644
--- a/src/Native/Bootstrap/main.cpp
+++ b/src/Native/Bootstrap/main.cpp
@@ -85,11 +85,12 @@ static char& __unbox_z = __stop___unbox;
#endif // !CPPCODEGEN
+// Do not warn that extern C methods throw exceptions. This is temporary
+// as long as we have unimplemented/throwing APIs in this file.
+#pragma warning(disable:4297)
#ifdef CPPCODEGEN
-#pragma warning(disable:4297)
-
extern "C" Object * RhNewObject(MethodTable * pMT);
extern "C" Object * RhNewArray(MethodTable * pMT, int32_t elements);
extern "C" void * RhTypeCast_IsInstanceOf(void * pObject, MethodTable * pMT);
@@ -238,15 +239,18 @@ extern "C" void RhpUniversalTransition_DebugStepTailCall()
{
throw "RhpUniversalTransition_DebugStepTailCall";
}
-extern "C" void CCWAddRef()
-{
- throw "CCWAddRef";
-}
void* RtRHeaderWrapper();
#endif // CPPCODEGEN
+// This works around System.Private.Interop's references to Interop.Native.
+// This won't be needed once we stop dragging in S.P.Interop for basic p/invoke support.
+extern "C" void CCWAddRef()
+{
+ throw "CCWAddRef";
+}
+
extern "C" void __fail_fast()
{
// TODO: FailFast