Skip to content
Merged
Changes from all commits
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
2 changes: 2 additions & 0 deletions src/coreclr/gc/gc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49693,6 +49693,7 @@ bool gc_heap::compute_hard_limit()

bool gc_heap::compute_memory_settings(bool is_initialization, uint32_t& nhp, uint32_t nhp_from_config, size_t& seg_size_from_config, size_t new_current_total_committed)
{
#ifdef HOST_64BIT
// If the hard limit is specified, the user is saying even if the process is already
// running in a container, use this limit for the GC heap.
if (!hard_limit_config_p)
Expand All @@ -49716,6 +49717,7 @@ bool gc_heap::compute_memory_settings(bool is_initialization, uint32_t& nhp, uin
{
return false;
}
#endif //HOST_64BIT

#ifdef USE_REGIONS
{
Expand Down