Make the format of "Real Memory" and "Virtual Memory" lines more

consistent with the rest of sysctl vm.vmtotal output.

MFC after:	3 days
This commit is contained in:
Marko Zec 2010-09-16 10:53:01 +00:00
parent 65f2c0ff58
commit 13e86ef7ee

View File

@ -406,9 +406,9 @@ S_vmtotal(int l2, void *p)
"%hd Sleep: %hd)\n",
v->t_rq, v->t_dw, v->t_pw, v->t_sl);
printf(
"Virtual Memory:\t\t(Total: %dK, Active %dK)\n",
"Virtual Memory:\t\t(Total: %dK Active: %dK)\n",
v->t_vm * pageKilo, v->t_avm * pageKilo);
printf("Real Memory:\t\t(Total: %dK Active %dK)\n",
printf("Real Memory:\t\t(Total: %dK Active: %dK)\n",
v->t_rm * pageKilo, v->t_arm * pageKilo);
printf("Shared Virtual Memory:\t(Total: %dK Active: %dK)\n",
v->t_vmshr * pageKilo, v->t_avmshr * pageKilo);