summaryrefslogtreecommitdiff
path: root/fd.h
blob: c8d0c340011cef238effc49ff63e837d0787f94a (plain)
1
2
3
4
5
6
7
8
9
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];