提交 0294e3e2 创建 作者: rsc's avatar rsc

comments

上级 19297caf
// 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 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论