From: Thomas Veerman Date: Fri, 25 Jan 2013 13:42:14 +0000 (+0100) Subject: ARM: run with 64 processes only for now X-Git-Tag: v3.2.1~60 X-Git-Url: http://zhaoyanbai.com/repos/dig.html?a=commitdiff_plain;h=cb87646daca6fb429aab63205869ed4257039328;p=minix.git ARM: run with 64 processes only for now --- diff --git a/include/minix/sys_config.h b/include/minix/sys_config.h index 533046cd7..1c4a0edc1 100644 --- a/include/minix/sys_config.h +++ b/include/minix/sys_config.h @@ -5,7 +5,12 @@ * This section contains user-settable parameters * *===========================================================================*/ +#if defined(__arm__) +/* FIXME: For now we only support 64 processes on ARM */ +#define _NR_PROCS 64 +#else #define _NR_PROCS 256 +#endif /* defined(__arm__) */ #define _NR_SYS_PROCS 64 /* Set the FP_FORMAT type based on the machine selected, either hw or sw */