summaryrefslogtreecommitdiff
path: root/proc.h
diff options
context:
space:
mode:
authorrsc <rsc>2006-09-06 18:38:56 +0000
committerrsc <rsc>2006-09-06 18:38:56 +0000
commit39593d2f1aab1355d61b75c041b31a88d2043a04 (patch)
tree12f6a0ff59c925e6f412e5fdb506484da513fd39 /proc.h
parent89ebd895b8d1efe2d562971e6cdcb6571982b5b1 (diff)
downloadxv6-labs-39593d2f1aab1355d61b75c041b31a88d2043a04.tar.gz
xv6-labs-39593d2f1aab1355d61b75c041b31a88d2043a04.tar.bz2
xv6-labs-39593d2f1aab1355d61b75c041b31a88d2043a04.zip
struct fd -> struct file
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proc.h b/proc.h
index e3f8cc2..d29f765 100644
--- a/proc.h
+++ b/proc.h
@@ -39,7 +39,7 @@ struct proc{
int ppid;
void *chan; // sleep
int killed;
- struct fd *fds[NOFILE];
+ struct file *ofile[NOFILE];
struct inode *cwd;
struct jmpbuf jmpbuf;
struct trapframe *tf; // points into kstack, used to find user regs