mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Added 'pages in VM cache' statistic.
This commit is contained in:
parent
ba1efeeea4
commit
39b3568a26
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5463
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue