Skip to content
Snippets Groups Projects
Commit 0294e3e2 authored by rsc's avatar rsc
Browse files

comments

parent 19297caf
No related branches found
No related tags found
No related merge requests found
// 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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment