Skip to content

Commit

Permalink
Correct minimum memory size value from 200MB to 20MB (#77682)
Browse files Browse the repository at this point in the history
  • Loading branch information
nealef authored Nov 1, 2022
1 parent 74d33fe commit 7d5efbb
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 7d5efbb

Please sign in to comment.