svn commit: r215145 - head/sys/kern

Edward Tomasz Napierala trasz at FreeBSD.org
Thu Nov 11 21:53:47 UTC 2010


Author: trasz
Date: Thu Nov 11 21:53:46 2010
New Revision: 215145
URL: http://svn.freebsd.org/changeset/base/215145

Log:
  Fix style.
  
  Submitted by:	bde

Modified:
  head/sys/kern/kern_proc.c

Modified: head/sys/kern/kern_proc.c
==============================================================================
--- head/sys/kern/kern_proc.c	Thu Nov 11 21:36:52 2010	(r215144)
+++ head/sys/kern/kern_proc.c	Thu Nov 11 21:53:46 2010	(r215145)
@@ -784,10 +784,10 @@ fill_kinfo_proc_only(struct proc *p, str
 	calcru(p, &kp->ki_rusage.ru_utime, &kp->ki_rusage.ru_stime);
 	PROC_SUNLOCK(p);
 	calccru(p, &kp->ki_childutime, &kp->ki_childstime);
-
-	/* Some callers want child-times in a single value */
+	/* Some callers want child times in a single value. */
 	kp->ki_childtime = kp->ki_childstime;
 	timevaladd(&kp->ki_childtime, &kp->ki_childutime);
+
 	tp = NULL;
 	if (p->p_pgrp) {
 		kp->ki_pgid = p->p_pgrp->pg_id;


More information about the svn-src-head mailing list