1 #ifndef _MINIX_SYS_CONFIG_H
2 #define _MINIX_SYS_CONFIG_H 1
4 /*===========================================================================*
5 * This section contains user-settable parameters *
6 *===========================================================================*/
9 /* FIXME: For now we only support 64 processes on ARM */
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
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 */