From c01718d9b59a3d07ed01a71b20fcc91fbdb126d7 Mon Sep 17 00:00:00 2001 From: Tulio A M Mendes Date: Sun, 15 Feb 2026 21:33:23 -0300 Subject: [PATCH] fix: raise PROCESS_MAX_FILES from 16 to 64 for POSIX compliance --- include/process.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/process.h b/include/process.h index 8550003..cc2c046 100644 --- a/include/process.h +++ b/include/process.h @@ -36,7 +36,7 @@ struct file { uint32_t refcount; }; -#define PROCESS_MAX_FILES 16 +#define PROCESS_MAX_FILES 64 #define PROCESS_MAX_SIG 32 -- 2.43.0