diff options
Diffstat (limited to 'proc.h')
-rw-r--r-- | proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ struct proc { enum procstate state; // Process state int pid; // Process ID struct proc *parent; // Parent process - struct trapframe *tf; // Trap frame for current syscall + struct sysframe *sf; // Syscall frame for current syscall struct context *context; // swtch() here to run process void *chan; // If non-zero, sleeping on chan int killed; // If non-zero, have been killed |