From owner-cvs-src-old@FreeBSD.ORG Tue May 31 15:12:39 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 772391065673 for ; Tue, 31 May 2011 15:12:39 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6607B8FC16 for ; Tue, 31 May 2011 15:12:39 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p4VFCd3Q009602 for ; Tue, 31 May 2011 15:12:39 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p4VFCd75009601 for cvs-src-old@freebsd.org; Tue, 31 May 2011 15:12:39 GMT (envelope-from jhb@repoman.freebsd.org) Message-Id: <201105311512.p4VFCd75009601@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jhb@repoman.freebsd.org using -f From: John Baldwin Date: Tue, 31 May 2011 15:11:23 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/top commands.c machine.h top.X top.c src/usr.bin/top machine.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 May 2011 15:12:39 -0000 jhb 2011-05-31 15:11:23 UTC FreeBSD src repository Modified files: contrib/top commands.c machine.h top.X top.c usr.bin/top machine.c Log: SVN rev 222530 on 2011-05-31 15:11:23Z by jhb Add a new option to toggle the display of the system idle process (per-CPU idle threads). The process is displayed by default (subject to whether or not system processes are displayed) to preserve existing behavior. The system idle process can be hidden via the '-z' command line argument or the 'z' key while top is running. When it is hidden, top more closely matches the behavior of FreeBSD <= 4.x where idle time was not accounted to any process. MFC after: 2 weeks Revision Changes Path 1.17 +1 -0 src/contrib/top/commands.c 1.12 +1 -0 src/contrib/top/machine.h 1.22 +7 -1 src/contrib/top/top.X 1.27 +18 -6 src/contrib/top/top.c 1.95 +7 -0 src/usr.bin/top/machine.c