From ee3730ab17c90eecbb328efd08ac56bf7cad1d93 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 5d5d4ad8..e5721ad8 100644 --- a/include/process.h +++ b/include/process.h @@ -45,7 +45,7 @@ struct file { uint32_t refcount; }; -#define PROCESS_MAX_FILES 16 +#define PROCESS_MAX_FILES 64 #define PROCESS_MAX_SIG 32 -- 2.43.0