We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36a435c commit e850bcbCopy full SHA for e850bcb
src/coreclr/gc/gcpriv.h
@@ -51,8 +51,8 @@ inline void FATAL_GC_ERROR()
51
//
52
// This means any empty regions can be freely used for any generation. For
53
// Server GC we will balance regions between heaps.
54
-// For now disable regions outside of StandAlone GC builds
55
-#if defined (HOST_64BIT) && defined (BUILD_AS_STANDALONE)
+// For now disable regions for StandAlone GC, NativeAOT and MacOS builds
+#if defined (HOST_64BIT) && !defined (BUILD_AS_STANDALONE) && !defined(__APPLE__) && !defined(FEATURE_REDHAWK)
56
#define USE_REGIONS
57
#endif //HOST_64BIT && BUILD_AS_STANDALONE
58
0 commit comments