summaryrefslogtreecommitdiff
path: root/fd.h
blob: 1be1cf09bb54701e6b777b91650b0311c3140773 (plain)
1
2
3
4
5
6
7
8
9
10
11
struct fd {
  enum { FD_CLOSED, FD_NONE, FD_PIPE, FD_FILE } type;
  int ref; // reference count
  char readable;
  char writeable;
  struct pipe *pipe;
  struct inode *ip;
  uint off;
};

extern struct fd fds[NFD];