summaryrefslogtreecommitdiff
path: root/proc.h
diff options
context:
space:
mode:
authorrsc <rsc>2006-07-17 01:58:13 +0000
committerrsc <rsc>2006-07-17 01:58:13 +0000
commitb5f17007f41770fee97fa850635976ceb7aa7492 (patch)
tree779473b174de7542e73219aed716d1c666a08a11 /proc.h
parente0966f459f5543faf9e574b7415bec2bf11e6b42 (diff)
downloadxv6-labs-b5f17007f41770fee97fa850635976ceb7aa7492.tar.gz
xv6-labs-b5f17007f41770fee97fa850635976ceb7aa7492.tar.bz2
xv6-labs-b5f17007f41770fee97fa850635976ceb7aa7492.zip
standarize on unix-like lowercase struct names
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/proc.h b/proc.h
index 256fa7c..8fb935c 100644
--- a/proc.h
+++ b/proc.h
@@ -48,14 +48,14 @@ struct proc{
int killed;
struct fd *fds[NOFILE];
- struct Taskstate ts; // only to give cpu address of kernel stack
- struct Segdesc gdt[NSEGS];
+ struct taskstate ts; // only to give cpu address of kernel stack
+ struct segdesc gdt[NSEGS];
uint esp; // kernel stack pointer
uint ebp; // kernel frame pointer
struct jmpbuf jmpbuf;
- struct Trapframe *tf; // points into kstack, used to find user regs
+ struct trapframe *tf; // points into kstack, used to find user regs
};
extern struct proc proc[];