s/Free Memory Pages/Free Memory/ to avoid confusion, since we're

reporting a number of bytes rather than a number of pages

PR:		misc/165208
Submitted by:	Arnaud Lacombe <lacombar@gmail.com>
Approved by:	cperciva
MFC after:	3 days
This commit is contained in:
Eitan Adler 2012-04-11 14:18:18 +00:00
parent bf98096218
commit ad0e6cda92
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=234134

View File

@ -419,7 +419,7 @@ S_vmtotal(int l2, void *p)
v->t_vmshr * pageKilo, v->t_avmshr * pageKilo);
printf("Shared Real Memory:\t(Total: %dK Active: %dK)\n",
v->t_rmshr * pageKilo, v->t_armshr * pageKilo);
printf("Free Memory Pages:\t%dK\n", v->t_free * pageKilo);
printf("Free Memory:\t%dK\n", v->t_free * pageKilo);
return (0);
}