From owner-cvs-src@FreeBSD.ORG Sat Jun 10 16:36:50 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 926FC16B99D; Sat, 10 Jun 2006 16:36:50 +0000 (UTC) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0089649BAF; Sat, 10 Jun 2006 15:42:17 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k5AFeAuX051465; Sat, 10 Jun 2006 15:40:10 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k5AFeAVG051464; Sat, 10 Jun 2006 15:40:10 GMT (envelope-from simon) Message-Id: <200606101540.k5AFeAVG051464@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sat, 10 Jun 2006 15:40:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/usr.sbin/gstat Makefile gstat.8 gstat.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: Sat, 10 Jun 2006 16:36:51 -0000 simon 2006-06-10 15:40:10 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) usr.sbin/gstat Makefile gstat.8 gstat.c Log: MFC: - Add support for filtering the the list of providers by a regular expression, which makes it possible to only see interesting providers. "f" is used inside gstat to set a filter, "F" is used to remove current filter. - Do not print some uninteresting values in the gstat title line. - Do not print past the end of the screen. - Read multiple keystrokes per "wait" when gstat is running. - Remove a redundant != check, right after check of NULL against the same variable ("gid"). - Use sysexits.h. - Do not link against libkvm and libsbuf, they are not actually used. - Fix a few style(9) issues where I had to touch nearby code anyway. src/usr.sbin/gstat/Makefile: rev 1.6 -> 1.7 src/usr.sbin/gstat/gstat.8: rev 1.7 -> 1.8 src/usr.sbin/gstat/gstat.c: rev 1.12 -> 1.13 Revision Changes Path 1.6.2.1 +2 -2 src/usr.sbin/gstat/Makefile 1.7.2.1 +10 -1 src/usr.sbin/gstat/gstat.8 1.12.2.1 +147 -38 src/usr.sbin/gstat/gstat.c