Skip to content
Snippets Groups Projects
fd.h 215 B
Newer Older
rtm's avatar
rtm committed
struct fd {
rtm's avatar
rtm committed
  enum { FD_CLOSED, FD_NONE, FD_PIPE, FD_FILE } type;
rsc's avatar
rsc committed
  int ref; // reference count
rtm's avatar
rtm committed
  char readable;
  char writeable;
  struct pipe *pipe;
rtm's avatar
rtm committed
  struct inode *ip;
  uint off;
rtm's avatar
rtm committed
};

extern struct fd fds[NFD];