From: Tulio A M Mendes Date: Mon, 16 Feb 2026 00:33:23 +0000 (-0300) Subject: fix: raise PROCESS_MAX_FILES from 16 to 64 for POSIX compliance X-Git-Url: https://projects.tadryanom.me/?a=commitdiff_plain;h=ee3730ab17c90eecbb328efd08ac56bf7cad1d93;p=AdrOS.git fix: raise PROCESS_MAX_FILES from 16 to 64 for POSIX compliance --- 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