tab police

This commit is contained in:
rsc 2009-05-31 00:39:17 +00:00
parent 215738336a
commit 030a47736f
4 changed files with 42 additions and 42 deletions

2
proc.h
View File

@ -32,7 +32,7 @@ struct proc {
uint sz; // Size of process memory (bytes)
char *kstack; // Bottom of kernel stack for this process
enum proc_state state; // Process state
int pid; // Process ID
volatile int pid; // Process ID
struct proc *parent; // Parent process
struct trapframe *tf; // Trap frame for current syscall
struct context *context; // Switch here to run process