svn commit: r234261 - stable/8/sbin/sysctl
Eitan Adler
eadler at FreeBSD.org
Sat Apr 14 02:07:19 UTC 2012
Author: eadler
Date: Sat Apr 14 02:07:18 2012
New Revision: 234261
URL: http://svn.freebsd.org/changeset/base/234261
Log:
MFC r234134:
s/Free Memory Pages/Free Memory/ to avoid confusion, since we're
reporting a number of bytes rather than a number of pages
Approved by: cperciva (implicit)
Modified:
stable/8/sbin/sysctl/sysctl.c
Directory Properties:
stable/8/sbin/sysctl/ (props changed)
Modified: stable/8/sbin/sysctl/sysctl.c
==============================================================================
--- stable/8/sbin/sysctl/sysctl.c Sat Apr 14 02:06:53 2012 (r234260)
+++ stable/8/sbin/sysctl/sysctl.c Sat Apr 14 02:07:18 2012 (r234261)
@@ -411,7 +411,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);
}
More information about the svn-src-stable-8
mailing list