mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
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:
parent
65f2c0ff58
commit
13e86ef7ee
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue