From 34ec037aa0e31a803e36bcdd1aed780b4a01c241 Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Sun, 15 Dec 1991 00:00:00 +0000 Subject: [PATCH] Plan 9 from Bell Labs 1991-12-15 --- port/proc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/port/proc.c b/port/proc.c index 3a10071142f089019bb1e943ddb0b21463a7524b..8bc098975ea7b0cc8e65f42de27ac1104eb4e6b5 100644 --- a/port/proc.c +++ b/port/proc.c @@ -524,9 +524,7 @@ pexit(char *exitstr, int freemem) wq = newwaitq(); wq->w.pid = c->pid; wq->w.time[TUser] = TK2MS(c->time[TUser]); - wq->w.time[TCUser] = TK2MS(c->time[TCUser]); wq->w.time[TSys] = TK2MS(c->time[TSys]); - wq->w.time[TCSys] = TK2MS(c->time[TCSys]); wq->w.time[TReal] = TK2MS(MACHP(0)->ticks - c->time[TReal]); if(exitstr) strncpy(wq->w.msg, exitstr, ERRLEN);