=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/systat/vmstat.c,v retrieving revision 1.41 retrieving revision 1.42 diff -u -r1.41 -r1.42 --- src/usr.bin/systat/vmstat.c 2003/06/03 02:56:17 1.41 +++ src/usr.bin/systat/vmstat.c 2003/10/15 20:01:32 1.42 @@ -1,4 +1,4 @@ -/* $OpenBSD: vmstat.c,v 1.41 2003/06/03 02:56:17 millert Exp $ */ +/* $OpenBSD: vmstat.c,v 1.42 2003/10/15 20:01:32 mickey Exp $ */ /* $NetBSD: vmstat.c,v 1.5 1996/05/10 23:16:40 thorpej Exp $ */ /*- @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)vmstat.c 8.2 (Berkeley) 1/12/94"; #endif -static char rcsid[] = "$OpenBSD: vmstat.c,v 1.41 2003/06/03 02:56:17 millert Exp $"; +static char rcsid[] = "$OpenBSD: vmstat.c,v 1.42 2003/10/15 20:01:32 mickey Exp $"; #endif /* not lint */ /* @@ -311,6 +311,8 @@ mvprintw(VMSTATROW + 15, VMSTATCOL + 10, "pdfre"); if (LINES - 1 > VMSTATROW + 16) mvprintw(VMSTATROW + 16, VMSTATCOL + 10, "pdscn"); + if (LINES - 1 > VMSTATROW + 17) + mvprintw(VMSTATROW + 17, VMSTATCOL + 10, "pzidle"); mvprintw(GENSTATROW, GENSTATCOL, " Csw Trp Sys Int Sof Flt"); @@ -480,6 +482,8 @@ PUTRATE(uvmexp.pdfreed, VMSTATROW + 15, VMSTATCOL, 9); if (LINES - 1 > VMSTATROW + 16) PUTRATE(uvmexp.pdscans, VMSTATROW + 16, VMSTATCOL, 9); + if (LINES - 1 > VMSTATROW + 17) + PUTRATE(uvmexp.zeropages, VMSTATROW + 16, VMSTATCOL, 9); PUTRATE(uvmexp.pageins, PAGEROW + 2, PAGECOL + 5, 5); PUTRATE(uvmexp.pdpageouts, PAGEROW + 2, PAGECOL + 10, 5);