view src/inode.h @ 226:bd948528b2d6

impl_vm_void_ret
author anatofuz
date Mon, 27 Jan 2020 14:13:05 +0900
parents eda7ea83f4f3
children
line wrap: on
line source

typedef struct inode <Impl, Isa> impl file {
    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];
} inode;