Skip to content

Commit

Permalink
Fix special sweep issue for workstation (#83342)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Au <andrewau@microsoft.com>
  • Loading branch information
github-actions[bot] and cshung committed Apr 4, 2023
1 parent f8777ff commit ed90f14
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/coreclr/gc/gc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30516,6 +30516,13 @@ void gc_heap::plan_phase (int condemned_gen_number)
gc_time_info[time_plan] = gc_time_info[time_sweep] - gc_time_info[time_plan];
}
#endif //FEATURE_EVENT_TRACE

#ifdef USE_REGIONS
if (special_sweep_p)
{
should_compact = FALSE;
}
#endif //!USE_REGIONS
#endif //MULTIPLE_HEAPS

#ifdef FEATURE_LOH_COMPACTION
Expand Down

0 comments on commit ed90f14

Please sign in to comment.