Reduce proc stack size to 1M

This commit is contained in:
2025-11-10 18:48:47 +01:00
parent 81015d600b
commit 1f93e8db13

View File

@ -13,7 +13,7 @@
#define PROC_NAME_MAX 0x100 #define PROC_NAME_MAX 0x100
#define PROC_STACKBLOCKS (1024*1) #define PROC_STACKBLOCKS (256)
#define PROC_STACKSIZE (PROC_STACKBLOCKS * BITMAP_BLOCK_SIZE) #define PROC_STACKSIZE (PROC_STACKBLOCKS * BITMAP_BLOCK_SIZE)
#define PROC_MAX 0x100 // max amount of processes #define PROC_MAX 0x100 // max amount of processes