svn commit: r234262 - stable/7/sbin/sysctl
Eitan Adler
eadler at FreeBSD.org
Sat Apr 14 02:07:38 UTC 2012
Author: eadler
Date: Sat Apr 14 02:07:37 2012
New Revision: 234262
URL: http://svn.freebsd.org/changeset/base/234262
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/7/sbin/sysctl/sysctl.c
Directory Properties:
stable/7/sbin/sysctl/ (props changed)
Modified: stable/7/sbin/sysctl/sysctl.c
==============================================================================
--- stable/7/sbin/sysctl/sysctl.c Sat Apr 14 02:07:18 2012 (r234261)
+++ stable/7/sbin/sysctl/sysctl.c Sat Apr 14 02:07:37 2012 (r234262)
@@ -408,7 +408,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-all
mailing list