c41f1de5d4
pipes
9 lines
176 B
C
9 lines
176 B
C
struct fd {
|
|
enum { FD_CLOSED, FD_NONE, FD_PIPE } type;
|
|
int count; // reference count
|
|
char readable;
|
|
char writeable;
|
|
struct pipe *pipe;
|
|
};
|
|
|
|
extern struct fd fds[NFD];
|