Skip to content

Commit

Permalink
Revert "Enable GC Regions by default (#59283)" (#63935)
Browse files Browse the repository at this point in the history
This reverts commit cf91716.

This looks to be creating a lot of crashes in a lot of different unit tests on Mac. Reverting seems to halt the Mac failures (see https://dev.azure.com/dnceng/public/_build/results?buildId=1557880)

Fixes #63439
  • Loading branch information
agocke committed Jan 18, 2022
1 parent 0266f03 commit b0de23b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/coreclr/gc/gcpriv.h
Expand Up @@ -51,8 +51,8 @@ inline void FATAL_GC_ERROR()
//
// This means any empty regions can be freely used for any generation. For
// Server GC we will balance regions between heaps.
// For now disable regions StandAlone GC builds
#if defined (HOST_64BIT) && !defined (BUILD_AS_STANDALONE)
// For now disable regions outside of StandAlone GC builds
#if defined (HOST_64BIT) && defined (BUILD_AS_STANDALONE)
#define USE_REGIONS
#endif //HOST_64BIT && BUILD_AS_STANDALONE

Expand Down

0 comments on commit b0de23b

Please sign in to comment.