comments
This commit is contained in:
parent
19297caf0d
commit
0294e3e290
1 changed files with 6 additions and 5 deletions
11
fsvar.h
11
fsvar.h
|
@ -1,11 +1,12 @@
|
|||
// in-core file system types
|
||||
|
||||
struct inode {
|
||||
uint dev;
|
||||
uint inum;
|
||||
int count;
|
||||
int busy;
|
||||
short type;
|
||||
uint dev; // Device number
|
||||
uint inum; // Inode number
|
||||
int ref; // Reference count
|
||||
int busy; // Is the inode "locked"?
|
||||
|
||||
short type; // copy of disk inode
|
||||
short major;
|
||||
short minor;
|
||||
short nlink;
|
||||
|
|
Loading…
Reference in a new issue