From 760a1ff3ea7503b1ed234750855bcb35d7b63e4b Mon Sep 17 00:00:00 2001 From: dg Date: Tue, 18 Oct 1994 15:17:09 +0000 Subject: [PATCH] Made zero-fill stats a bit more clear. --- usr.bin/vmstat/vmstat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index 0f53464d18e1..d128472a6719 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -556,8 +556,8 @@ dosum() (void)printf("%9u pages examined by the page daemon\n", sum.v_pdpages); (void)printf("%9u pages reactivated\n", sum.v_reactivated); (void)printf("%9u intransit blocking page faults\n", sum.v_intrans); - (void)printf("%9u zero fill pages created\n", sum.v_nzfod); - (void)printf("%9u zero fill page faults\n", sum.v_zfod); + (void)printf("%9u zero fill pages allocated\n", sum.v_nzfod); + (void)printf("%9u zero fill pages zeroed\n", sum.v_zfod); (void)printf("%9u copy-on-write faults\n", sum.v_cow_faults); (void)printf("%9u total VM faults taken\n", sum.v_vm_faults); (void)printf("%9u pages freed\n", sum.v_tfree);