From 2d32522f4549383ab49b6ee9a7a9b15a0aaa9414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Wed, 3 Jan 2024 23:57:44 +0000 Subject: [PATCH] Increase MAX_MEMORY_PER_PROC to 768 MiB. --- posix-runner/posix-runner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posix-runner/posix-runner.c b/posix-runner/posix-runner.c index e8dc7d8..826be42 100644 --- a/posix-runner/posix-runner.c +++ b/posix-runner/posix-runner.c @@ -16,7 +16,7 @@ void* syscall_table; -#define MAX_MEMORY_PER_PROC (128 * 1024 * 1024) +#define MAX_MEMORY_PER_PROC (768 * 1024 * 1024) #define __FILEDES_MAX 4096 struct mem_block {