summaryrefslogtreecommitdiff
path: root/proc.h
diff options
context:
space:
mode:
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[];