Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 May 2009 19:47:23 +0000 (UTC)
From:      Kip Macy <kmacy@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r192565 - user/kmacy/releng_7_2_fcs/sys/kern
Message-ID:  <200905211947.n4LJlNbv077082@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kmacy
Date: Thu May 21 19:47:22 2009
New Revision: 192565
URL: http://svn.freebsd.org/changeset/base/192565

Log:
  remove unused KSE references

Modified:
  user/kmacy/releng_7_2_fcs/sys/kern/kern_clock.c

Modified: user/kmacy/releng_7_2_fcs/sys/kern/kern_clock.c
==============================================================================
--- user/kmacy/releng_7_2_fcs/sys/kern/kern_clock.c	Thu May 21 19:44:05 2009	(r192564)
+++ user/kmacy/releng_7_2_fcs/sys/kern/kern_clock.c	Thu May 21 19:47:22 2009	(r192565)
@@ -456,10 +456,6 @@ statclock(int usermode)
 		/*
 		 * Charge the time as appropriate.
 		 */
-#ifdef KSE
-		if (p->p_flag & P_SA)
-			thread_statclock(1);
-#endif
 		td->td_uticks++;
 		if (p->p_nice > NZERO)
 			cp_time[CP_NICE]++;
@@ -483,10 +479,6 @@ statclock(int usermode)
 			td->td_iticks++;
 			cp_time[CP_INTR]++;
 		} else {
-#ifdef KSE
-			if (p->p_flag & P_SA)
-				thread_statclock(0);
-#endif
 			td->td_pticks++;
 			td->td_sticks++;
 			if (!TD_IS_IDLETHREAD(td))



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200905211947.n4LJlNbv077082>