From afa3ecc0f75968b62646e01063939da8e39f0099 Mon Sep 17 00:00:00 2001 From: Siarhei Liakh Date: Thu, 23 Jan 2025 12:05:47 -0500 Subject: [PATCH] feat: Increase the->allocationLimit to 4GB refs: #55 --- xsnap/sources/xsnapPlatform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xsnap/sources/xsnapPlatform.c b/xsnap/sources/xsnapPlatform.c index 79e777c..582a93b 100644 --- a/xsnap/sources/xsnapPlatform.c +++ b/xsnap/sources/xsnapPlatform.c @@ -291,7 +291,7 @@ void fxCreateMachinePlatform(txMachine* the) // the->allocationLimit = 10 * measured_max; size_t GB = 1024 * 1024 * 1024; - the->allocationLimit = 2 * GB; + the->allocationLimit = 4 * GB; } void fxDeleteMachinePlatform(txMachine* the)