diff options
author | rtm <rtm> | 2006-08-29 19:59:52 +0000 |
---|---|---|
committer | rtm <rtm> | 2006-08-29 19:59:52 +0000 |
commit | 7a37578e9efcba67d82fbfee7d03cba830a41106 (patch) | |
tree | 1d86660c9a91ed3cd2bbbdda17bc0e79ea21a924 /proc.h | |
parent | dfcc5b997ce9c313b9ac0e7d8da39c4416b472a8 (diff) | |
download | xv6-labs-7a37578e9efcba67d82fbfee7d03cba830a41106.tar.gz xv6-labs-7a37578e9efcba67d82fbfee7d03cba830a41106.tar.bz2 xv6-labs-7a37578e9efcba67d82fbfee7d03cba830a41106.zip |
clear killed flag in exit
idecref cwd in exit
Diffstat (limited to 'proc.h')
-rw-r--r-- | proc.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -46,12 +46,7 @@ struct proc{ int killed; struct fd *fds[NOFILE]; struct inode *cwd; - - uint esp; // kernel stack pointer - uint ebp; // kernel frame pointer - struct jmpbuf jmpbuf; - struct trapframe *tf; // points into kstack, used to find user regs }; |