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 // in-core file system types
struct inode { struct inode {
uint dev; uint dev; // Device number
uint inum; uint inum; // Inode number
int count; int ref; // Reference count
int busy; int busy; // Is the inode "locked"?
short type;
short type; // copy of disk inode
short major; short major;
short minor; short minor;
short nlink; 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