diff options
Diffstat (limited to 'fsvar.h')
-rw-r--r-- | fsvar.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/fsvar.h b/fsvar.h deleted file mode 100644 index 7f135a9..0000000 --- a/fsvar.h +++ /dev/null @@ -1,18 +0,0 @@ -// in-core file system types - -struct inode { - uint dev; // Device number - uint inum; // Inode number - int ref; // Reference count - int flags; // I_BUSY, I_VALID - - short type; // copy of disk inode - short major; - short minor; - short nlink; - uint size; - uint addrs[NDIRECT+1]; -}; - -#define I_BUSY 0x1 -#define I_VALID 0x2 |