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-14 19:59:44 +0300
committerScott Mosier <smosier@microsoft.com>2015-10-14 20:50:33 +0300
commit015b60a6ae813714a6dc576c36df4637880ab897 (patch)
tree76a3288dffb3ae226b9b2fd77747816f214f65f2 /src/Native/Runtime/PalRedhawkCommon.h
parent9ceafad81f9c68f16c6be2e11ff609ce9f228ae9 (diff)
Additional GC-to-EE hookup.
Provide specialized gcenv.h for CoreRT. Some refactoring of related gcenv stuff. Wire up finalizer code. Add runtime-specific scanning code.
Diffstat (limited to 'src/Native/Runtime/PalRedhawkCommon.h')
-rw-r--r--src/Native/Runtime/PalRedhawkCommon.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Native/Runtime/PalRedhawkCommon.h b/src/Native/Runtime/PalRedhawkCommon.h
index 51e0c8d72..02644b074 100644
--- a/src/Native/Runtime/PalRedhawkCommon.h
+++ b/src/Native/Runtime/PalRedhawkCommon.h
@@ -15,6 +15,7 @@
#ifndef __PAL_REDHAWK_COMMON_INCLUDED
#define __PAL_REDHAWK_COMMON_INCLUDED
+#ifndef GCENV_INCLUDED
// We define the notion of capabilities: optional functionality that the PAL may expose. Use
// PalHasCapability() with the constants below to determine what is supported at runtime.
enum PalCapability
@@ -23,6 +24,7 @@ enum PalCapability
LowMemoryNotificationCapability = 0x00000002, // CreateMemoryResourceNotification() and friends
GetCurrentProcessorNumberCapability = 0x00000004, // GetCurrentProcessorNumber()
};
+#endif // !GCENV_INCLUDED
#define DECLSPEC_ALIGN(x) __declspec(align(x))