xv6-cs450/fd.h

10 lines
174 B
C
Raw Normal View History

2006-06-27 16:35:53 +02:00
struct fd {
enum { FD_CLOSED, FD_NONE, FD_PIPE } type;
2006-07-16 04:04:58 +02:00
int ref; // reference count
2006-06-27 16:35:53 +02:00
char readable;
char writeable;
struct pipe *pipe;
};
extern struct fd fds[NFD];