diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-01-10 05:52:59 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-01-10 05:52:59 +0000 |
| commit | 39b3568a2691daf3d800b4e7b05aee8236bf7eb1 (patch) | |
| tree | 64bc846bf57f42ff5597c1808c56ec55c6ff8ee1 /usr.bin/vmstat | |
| parent | ba1efeeea4704c42bb5615f00e1e81aa0854f516 (diff) | |
Notes
Diffstat (limited to 'usr.bin/vmstat')
| -rw-r--r-- | usr.bin/vmstat/vmstat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/vmstat/vmstat.c b/usr.bin/vmstat/vmstat.c index d128472a67195..4b43ef4c6a69b 100644 --- a/usr.bin/vmstat/vmstat.c +++ b/usr.bin/vmstat/vmstat.c @@ -565,6 +565,7 @@ dosum() (void)printf("%9u pages freed by exiting processes\n", sum.v_pfree); (void)printf("%9u pages active\n", sum.v_active_count); (void)printf("%9u pages inactive\n", sum.v_inactive_count); + (void)printf("%9u pages in VM cache\n", sum.v_cache_count); (void)printf("%9u pages wired down\n", sum.v_wire_count); (void)printf("%9u pages free\n", sum.v_free_count); (void)printf("%9u bytes per page\n", sum.v_page_size); |
