svn commit: r192565 - user/kmacy/releng_7_2_fcs/sys/kern

Kip Macy kmacy at FreeBSD.org
Thu May 21 19:47:26 UTC 2009


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))


More information about the svn-src-user mailing list