From e4738911e4ed481f097040a14887d0b986bc0696 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 10 Nov 2022 16:18:55 -0800 Subject: [PATCH] Correct minimum memory size value from 200MB to 20MB (#77787) Co-authored-by: Neale Ferguson --- src/mono/mono/utils/memfuncs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mono/mono/utils/memfuncs.c b/src/mono/mono/utils/memfuncs.c index 885c21ae3d8fb..a38dcec17b1b6 100644 --- a/src/mono/mono/utils/memfuncs.c +++ b/src/mono/mono/utils/memfuncs.c @@ -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: