diff options
author | Robert Morris <[email protected]> | 2020-11-03 15:02:08 -0500 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2020-11-05 06:56:51 -0500 |
commit | 2875069973d3e0ca4a70f6e7648a92b14cf08ab6 (patch) | |
tree | 132b2723938da36a3cd9b63eccb1afb0fdf3fbc0 /kernel/proc.h | |
parent | b48ea5d2209bb9addf43687739245734038b991e (diff) | |
download | xv6-labs-2875069973d3e0ca4a70f6e7648a92b14cf08ab6.tar.gz xv6-labs-2875069973d3e0ca4a70f6e7648a92b14cf08ab6.tar.bz2 xv6-labs-2875069973d3e0ca4a70f6e7648a92b14cf08ab6.zip |
Frans' proc_lock.
Diffstat (limited to 'kernel/proc.h')
-rw-r--r-- | kernel/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/proc.h b/kernel/proc.h index 9c16ea7..e86bde1 100644 --- a/kernel/proc.h +++ b/kernel/proc.h @@ -80,7 +80,7 @@ struct trapframe { /* 280 */ uint64 t6; }; -enum procstate { UNUSED, SLEEPING, RUNNABLE, RUNNING, ZOMBIE }; +enum procstate { UNUSED, USED, SLEEPING, RUNNABLE, RUNNING, ZOMBIE }; // Per-process state struct proc { |