xv6-cs450/fsvar.h

17 lines
215 B
C
Raw Normal View History

// in-core file system types
struct inode {
uint dev;
uint inum;
int count;
int busy;
short type;
2006-08-08 20:07:37 +02:00
short major;
short minor;
short nlink;
uint size;
uint addrs[NDIRECT];
};
2006-07-22 00:10:40 +02:00
extern uint rootdev;