xv6/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 18:07:37 +00:00
short major;
short minor;
short nlink;
uint size;
uint addrs[NDIRECT];
};
2006-07-21 22:10:40 +00:00
extern uint rootdev;