xv6-cs450/file.h
2006-09-06 18:40:28 +00:00

10 lines
188 B
C

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