From 98f3efcb7037380141581215b869fdea710a67af Mon Sep 17 00:00:00 2001 From: Serge Vakulenko Date: Sun, 15 Nov 2015 14:14:18 -0800 Subject: [PATCH] Increase the max number of processes (NPROC) from 10 to 25. --- sys/pic32/Config.generic | 2 +- sys/pic32/machparam.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/pic32/Config.generic b/sys/pic32/Config.generic index 750e272..654a7ad 100644 --- a/sys/pic32/Config.generic +++ b/sys/pic32/Config.generic @@ -29,7 +29,7 @@ options "EXEC_AOUT" # Run a.out binaries options "EXEC_ELF" # Run ELF binaries options "EXEC_SCRIPT" # Run shell scripts options "UCB_METER" # Collect kernel statistics -options "NPROC=10" # Number of processes, default 10 +options "NPROC=10" # Number of processes, default 25 options "NBUF=10" # Number of i/o buffers, default 10 options "NFILE=24" # Number of files, default 24 options "NINODE=24" # Number of i-nodes, default 24 diff --git a/sys/pic32/machparam.h b/sys/pic32/machparam.h index 53c1b62..41b6894 100644 --- a/sys/pic32/machparam.h +++ b/sys/pic32/machparam.h @@ -44,7 +44,7 @@ #define MAXUSERS 1 /* number of user logins */ #endif #ifndef NPROC -#define NPROC 10 /* number of processes */ +#define NPROC 25 /* number of processes */ #endif #ifndef NINODE #define NINODE 24