]> Zhao Yanbai Git Server - minix.git/commitdiff
ARM: run with 64 processes only for now
authorThomas Veerman <thomas@minix3.org>
Fri, 25 Jan 2013 13:42:14 +0000 (14:42 +0100)
committerThomas Veerman <thomas@minix3.org>
Fri, 25 Jan 2013 17:07:02 +0000 (17:07 +0000)
include/minix/sys_config.h

index 533046cd746338411f5408da9e92a69d8b1f050e..1c4a0edc17819579bf456c0205a7e0dc6733909f 100644 (file)
@@ -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    */