From cc3db46d2cfca4685873ee2f847b6affda11e372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Wed, 3 Jan 2024 23:51:44 +0000 Subject: [PATCH] Set FILEDES_MAX to 4096. --- posix-runner/posix-runner.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/posix-runner/posix-runner.c b/posix-runner/posix-runner.c index 06dcf04..e8dc7d8 100644 --- a/posix-runner/posix-runner.c +++ b/posix-runner/posix-runner.c @@ -17,8 +17,7 @@ void* syscall_table; #define MAX_MEMORY_PER_PROC (128 * 1024 * 1024) -#define __FILEDES_MAX 32 -// 4096 +#define __FILEDES_MAX 4096 struct mem_block { void* address;