From owner-cvs-src@FreeBSD.ORG Thu May 4 03:56:32 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 881C816A417; Thu, 4 May 2006 03:56:32 +0000 (UTC) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1E9043D55; Thu, 4 May 2006 03:56:31 +0000 (GMT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k443uVJQ096187; Thu, 4 May 2006 03:56:31 GMT (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k443uV0A096183; Thu, 4 May 2006 03:56:31 GMT (envelope-from bde) Message-Id: <200605040356.k443uV0A096183@repoman.freebsd.org> From: Bruce Evans Date: Thu, 4 May 2006 03:56:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/top machine.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 May 2006 03:56:32 -0000 bde 2006-05-04 03:56:31 UTC FreeBSD src repository Modified files: usr.bin/top machine.c Log: Move the formatting of the NICE column to a new function format_nice() so that it can be more easily unbroken and extended. Try to use `static', `const' (as appropriate), prototypes declared together, and parameter names in prototypes for all private functions, not just the new one. Revision Changes Path 1.76 +30 -20 src/usr.bin/top/machine.c