xv6-cs450/file.h

10 lines
190 B
C

struct file {
enum { FD_CLOSED, FD_NONE, FD_PIPE, FD_INODE } type;
int ref; // reference count
char readable;
char writable;
struct pipe *pipe;
struct uinode *ip;
uint off;
};