Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated comment
  • Loading branch information
mangod9 committed Sep 30, 2022
commit 2b43f8af34fc7f7f10bdbc601e172860e8e5d8e9
5 changes: 2 additions & 3 deletions src/coreclr/gc/gc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44893,9 +44893,8 @@ HRESULT GCHeap::Initialize()
if (gc_heap::regions_range == 0)
{
if (gc_heap::heap_hard_limit)
{
// Keep the reservation size for regions similar to that for segments.
// We will initially reserve 6x the configured hard limit
{
// We will initially reserve 2x the configured hard limit
gc_heap::regions_range = 2 * gc_heap::heap_hard_limit;
}
else
Expand Down