xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit c16e0916a7d82d8001289943294ef727ffe0a3e8
parent 19b1f63813072a57c5b2d620049a4cb7f55b8af6
Author: rsc <rsc>
Date:   Wed,  8 Aug 2007 09:43:07 +0000

cleaner table

Diffstat:
Mproc.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/proc.c b/proc.c @@ -437,7 +437,7 @@ procdump(void) p = &proc[i]; if(p->state == UNUSED) continue; - if(p->state >= 0 && p->state < NELEM(states)) + if(p->state >= 0 && p->state < NELEM(states) && states[p->state]) state = states[p->state]; else state = "???";