-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparam.h
More file actions
20 lines (16 loc) · 715 Bytes
/
Copy pathparam.h
File metadata and controls
20 lines (16 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef PARAM_INCLUDE
#define PARAM_INCLUDE
#define NPROC 64 // maximum number of processes
#define KSTACKSIZE 4096 // size of per-process kernel stack
#define NCPU 8 // maximum number of CPUs
#define NOFILE 16 // open files per process
#define NFILE 100 // open files per system
#define NBUF 10 // size of disk block cache
#define NINODE 50 // maximum number of active i-nodes
#define NDEV 10 // maximum major device number
#define ROOTDEV 1 // device number of file system root disk
#define MAXARG 32 // max exec arguments
#define LOGSIZE 10 // max data sectors in on-disk log
#define HZ 10
#define N_CALLSTK 15
#endif