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
Correct minimum memory size value from 200MB to 20MB
  • Loading branch information
nealef committed Oct 31, 2022
commit f78e8c273d342cbaf691c23d7cd45d2e5ebbc56d
2 changes: 1 addition & 1 deletion src/mono/mono/utils/memfuncs.c
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
__d [__i] = NULL; \
} while (0)

#define MINMEMSZ 209715200 /* Minimum restricted memory size */
#define MINMEMSZ 20971520 /* Minimum restricted memory size - 20MB */

/**
* mono_gc_bzero_aligned:
Expand Down