1 #ifndef _MINIX_SYS_CONFIG_H
2 #define _MINIX_SYS_CONFIG_H 1
4 /*===========================================================================*
5 * This section contains user-settable parameters *
6 *===========================================================================*/
9 #define _NR_SYS_PROCS 64
11 /* Set the FP_FORMAT type based on the machine selected, either hw or sw */
12 #define _FP_NONE 0 /* no floating point support */
13 #define _FP_IEEE 1 /* conform IEEE floating point standard */
15 #ifndef _MINIX_FP_FORMAT
16 #define _MINIX_FP_FORMAT _FP_NONE
19 /* Kernel debug checks */
20 #define DEBUG_LOCK_CHECK 1 /* Interrupt Lock/unlock sanity checking. */
22 #define _KMESS_BUF_SIZE 10000
24 /* Default stack size (limit) */
25 #define DEFAULT_STACK_LIMIT (4 * 1024 * 1024)
27 #endif /* _MINIX_SYS_CONFIG_H */