Project

General

Profile

Statistics
| Revision:

root / lab4 / .minix-src / include / minix / sys_config.h @ 13

History | View | Annotate | Download (857 Bytes)

1
#ifndef _MINIX_SYS_CONFIG_H
2
#define _MINIX_SYS_CONFIG_H 1
3

    
4
/*===========================================================================*
5
 *                This section contains user-settable parameters                     *
6
 *===========================================================================*/
7

    
8
#define _NR_PROCS        256
9
#define _NR_SYS_PROCS        64
10

    
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     */
14

    
15
#ifndef _MINIX_FP_FORMAT
16
#define _MINIX_FP_FORMAT   _FP_NONE
17
#endif
18

    
19
/* Kernel debug checks */
20
#define DEBUG_LOCK_CHECK 1        /* Interrupt Lock/unlock sanity checking. */
21

    
22
#define _KMESS_BUF_SIZE  10000
23

    
24
/* Default stack size (limit) */
25
#define DEFAULT_STACK_LIMIT (4 * 1024 * 1024)
26

    
27
#endif /* _MINIX_SYS_CONFIG_H */