vm: fix sanity checks on arm
[minix.git] / include / minix / sys_config.h
blob1c4a0edc17819579bf456c0205a7e0dc6733909f
1 #ifndef _MINIX_SYS_CONFIG_H
2 #define _MINIX_SYS_CONFIG_H 1
4 /*===========================================================================*
5 * This section contains user-settable parameters *
6 *===========================================================================*/
8 #if defined(__arm__)
9 /* FIXME: For now we only support 64 processes on ARM */
10 #define _NR_PROCS 64
11 #else
12 #define _NR_PROCS 256
13 #endif /* defined(__arm__) */
14 #define _NR_SYS_PROCS 64
16 /* Set the FP_FORMAT type based on the machine selected, either hw or sw */
17 #define _FP_NONE 0 /* no floating point support */
18 #define _FP_IEEE 1 /* conform IEEE floating point standard */
20 #ifndef _MINIX_FP_FORMAT
21 #define _MINIX_FP_FORMAT _FP_NONE
22 #endif
24 /* Kernel debug checks */
25 #define DEBUG_LOCK_CHECK 1 /* Interrupt Lock/unlock sanity checking. */
27 #define _KMESS_BUF_SIZE 10000
29 /* Default stack size (limit) */
30 #define DEFAULT_STACK_LIMIT (4 * 1024 * 1024)
32 #endif /* _MINIX_SYS_CONFIG_H */