xv6-cs450/param.h

10 lines
256 B
C
Raw Normal View History

2006-06-12 17:22:12 +02:00
#define NPROC 64
#define PAGE 4096
#define KSTACKSIZE PAGE
#define NCPU 8
2006-06-27 16:35:53 +02:00
#define NOFILE 16 // file descriptors per process
#define NFD 100 // file descriptors per system
2006-07-10 21:06:48 +02:00
#define NREQUEST 100 // outstanding disk requests
#define NBUF 10
#define NINODE 100