Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeale Ferguson <neale@sinenomine.net>2022-11-01 05:33:52 +0300
committerGitHub <noreply@github.com>2022-11-01 05:33:52 +0300
commitb5e3872ad3559bb79f998dafc5ff3d3cd65d8387 (patch)
treec22fa593193aaac80bedd0483af002f211df29d9
parent242ac50598e4f596e1a42f9dd377701096ea3a74 (diff)
Fix default value to be 20MB (#21573)
-rw-r--r--mono/utils/memfuncs.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/mono/utils/memfuncs.c b/mono/utils/memfuncs.c
index ae01262034a..524539377d1 100644
--- a/mono/utils/memfuncs.c
+++ b/mono/utils/memfuncs.c
@@ -70,8 +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: