Date: Sat, 2 May 1998 02:12:59 +0200 From: Pierre Beyssac <pb@fasterix.freenix.org> To: freebsd-current@FreeBSD.ORG Subject: for review: minor patch to kern_exit.c Message-ID: <19980502021259.A10990@fasterix.frmug.fr.net>
next in thread | raw e-mail | index | archive | help
I'd like to commit the following trivial patch, but I prefer to check with competent people first :-). Has been running fine on my system for a few days; fixes the CPU part of PR# kern/5236 (zombie processes showing in ps as using CPU and mem). The mem part seems to be gone, maybe due to other VM changes. --- kern_exit.c 1998/04/06 08:26:03 1.66 +++ kern_exit.c 1998/05/02 00:05:24 @@ -270,6 +270,8 @@ LIST_REMOVE(p, p_list); LIST_INSERT_HEAD(&zombproc, p, p_list); p->p_stat = SZOMB; + p->p_cpticks = 0; + p->p_pctcpu = 0; LIST_REMOVE(p, p_hash); -- Pierre Beyssac pb@fasterix.frmug.org pb@fasterix.freenix.org {Free,Net,Open}BSD, Linux : il y a moins bien, mais c'est plus cher Free domains: http://www.eu.org/ or mail dns-manager@EU.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19980502021259.A10990>