2006-09-06 18:38:56 +00:00
|
|
|
struct file {
|
2007-08-22 06:01:32 +00:00
|
|
|
enum { FD_CLOSED, FD_NONE, FD_PIPE, FD_INODE } type;
|
2006-07-16 02:04:58 +00:00
|
|
|
int ref; // reference count
|
2006-06-27 14:35:53 +00:00
|
|
|
char readable;
|
2006-09-06 18:06:04 +00:00
|
|
|
char writable;
|
2006-06-27 14:35:53 +00:00
|
|
|
struct pipe *pipe;
|
2007-08-22 06:01:32 +00:00
|
|
|
struct uinode *ip;
|
2006-08-08 19:58:06 +00:00
|
|
|
uint off;
|
2006-06-27 14:35:53 +00:00
|
|
|
};
|