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/docs/static/gitweb.css?a=commitdiff_plain;h=c01718d9b59a3d07ed01a71b20fcc91fbdb126d7;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 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