From owner-svn-src-head@FreeBSD.ORG Mon Mar 9 11:18:41 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EEFF11065678; Mon, 9 Mar 2009 11:18:41 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DD1718FC13; Mon, 9 Mar 2009 11:18:41 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n29BIf50024913; Mon, 9 Mar 2009 11:18:41 GMT (envelope-from rwatson@svn.freebsd.org) Received: (from rwatson@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n29BIfrS024912; Mon, 9 Mar 2009 11:18:41 GMT (envelope-from rwatson@svn.freebsd.org) Message-Id: <200903091118.n29BIfrS024912@svn.freebsd.org> From: Robert Watson Date: Mon, 9 Mar 2009 11:18:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r189571 - head/sys/sys X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Mar 2009 11:18:42 -0000 Author: rwatson Date: Mon Mar 9 11:18:41 2009 New Revision: 189571 URL: http://svn.freebsd.org/changeset/base/189571 Log: Remove two now-defunct KSE fields from struct thread: td_uuticks and td_usticks. Modified: head/sys/sys/proc.h Modified: head/sys/sys/proc.h ============================================================================== --- head/sys/sys/proc.h Mon Mar 9 10:45:58 2009 (r189570) +++ head/sys/sys/proc.h Mon Mar 9 11:18:41 2009 (r189571) @@ -222,8 +222,6 @@ struct thread { u_int td_sticks; /* (t) Statclock hits in system mode. */ u_int td_iticks; /* (t) Statclock hits in intr mode. */ u_int td_uticks; /* (t) Statclock hits in user mode. */ - u_int td_uuticks; /* (k) Statclock hits (usr), for UTS. */ - u_int td_usticks; /* (k) Statclock hits (sys), for UTS. */ int td_intrval; /* (t) Return value for sleepq. */ sigset_t td_oldsigmask; /* (k) Saved mask from pre sigpause. */ sigset_t td_sigmask; /* (c) Current signal mask. */