Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/usr.bin/vmstat Pull up:



details:   https://anonhg.NetBSD.org/src/rev/8e4a00603239
branches:  netbsd-1-5
changeset: 489554:8e4a00603239
user:      sommerfeld <sommerfeld%NetBSD.org@localhost>
date:      Thu Sep 28 15:23:56 2000 +0000

description:
Pull up:
src/usr.bin/vmstat/vmstat.c  1.70
src/usr.bin/vmstat/vmstat.8  1.19

Fix misc/11086 (inconsistancies between man page and output)
Approved by thorpej

diffstat:

 usr.bin/vmstat/vmstat.8 |  5 ++---
 usr.bin/vmstat/vmstat.c |  6 +++---
 2 files changed, 5 insertions(+), 6 deletions(-)

diffs (50 lines):

diff -r f0e61dcc5820 -r 8e4a00603239 usr.bin/vmstat/vmstat.8
--- a/usr.bin/vmstat/vmstat.8   Thu Sep 28 15:03:05 2000 +0000
+++ b/usr.bin/vmstat/vmstat.8   Thu Sep 28 15:23:56 2000 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: vmstat.8,v 1.18 2000/06/04 19:15:21 cgd Exp $
+.\" $NetBSD: vmstat.8,v 1.18.2.1 2000/09/28 15:23:56 sommerfeld Exp $
 .\"
 .\" Copyright (c) 2000 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -181,12 +181,11 @@
 .sp
 .RS
 .nf
+flt    total page faults
 re     page reclaims (simulating reference bits)
-at     pages attached (found in free list)
 pi     pages paged in
 po     pages paged out
 fr     pages freed per second
-de     anticipated short term memory shortfall
 sr     pages scanned by clock algorithm, per-second
 .fi
 .RE
diff -r f0e61dcc5820 -r 8e4a00603239 usr.bin/vmstat/vmstat.c
--- a/usr.bin/vmstat/vmstat.c   Thu Sep 28 15:03:05 2000 +0000
+++ b/usr.bin/vmstat/vmstat.c   Thu Sep 28 15:23:56 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vmstat.c,v 1.66 2000/06/04 19:15:21 cgd Exp $ */
+/* $NetBSD: vmstat.c,v 1.66.2.1 2000/09/28 15:23:56 sommerfeld Exp $ */
 
 /*-
  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -80,7 +80,7 @@
 #if 0
 static char sccsid[] = "@(#)vmstat.c   8.2 (Berkeley) 3/1/95";
 #else
-__RCSID("$NetBSD: vmstat.c,v 1.66 2000/06/04 19:15:21 cgd Exp $");
+__RCSID("$NetBSD: vmstat.c,v 1.66.2.1 2000/09/28 15:23:56 sommerfeld Exp $");
 #endif
 #endif /* not lint */
 
@@ -502,7 +502,7 @@
 
        (void)printf(" procs   memory     page%*s", 23, "");
        if (ndrives > 0)
-               (void)printf("%s %*sfaults   cpu\n",
+               (void)printf("%s %*sfaults      cpu\n",
                   ((ndrives > 1) ? "disks" : "disk"),
                   ((ndrives > 1) ? ndrives * 3 - 4 : 0), "");
        else



Home | Main Index | Thread Index | Old Index