diff options
| author | David Greenman <dg@FreeBSD.org> | 1994-10-18 15:17:09 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1994-10-18 15:17:09 +0000 |
| commit | eb0a76a869f3b5432b6a4f57c5e06395fbc8fc9a (patch) | |
| tree | 310a7647c1c5576f6c23072ee6c11d76c8149cfb /usr.bin/vmstat/vmstat.c | |
| parent | c58c4cd7c644738da0c58662bc12b40266b2309d (diff) | |
Notes
Diffstat (limited to 'usr.bin/vmstat/vmstat.c')
| -rw-r--r-- | usr.bin/vmstat/vmstat.c | 4 |
1 files 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); |
