struct fd -> struct file

This commit is contained in:
rsc 2006-09-06 18:38:56 +00:00
parent 89ebd895b8
commit 39593d2f1a
9 changed files with 52 additions and 55 deletions

View file

@ -2,8 +2,8 @@
#define PAGE 4096 // granularity of user-space memory allocation
#define KSTACKSIZE PAGE // size of per-process kernel stack
#define NCPU 8 // maximum number of CPUs
#define NOFILE 16 // file descriptors per process
#define NFD 100 // file descriptors per system
#define NOFILE 16 // open files per process
#define NFILE 100 // open files per system
#define NREQUEST 100 // outstanding disk requests
#define NBUF 10 // size of disk block cache
#define NINODE 100 // maximum number of active i-nodes