commit 4492a1eef753032e1be77e7359b1b4544a1d1bb6 from: rsc date: Thu Apr 12 14:18:57 2007 UTC better memory stats (Jeff Sickel) commit - 86190ea39d2f42af86b9a7ffefaf32f385040f5c commit + 4492a1eef753032e1be77e7359b1b4544a1d1bb6 blob - 07f3596c9193a853d416359b577a0bfe50d7ebba blob + ccddcf6c8712f882c78f9f1a079a955ab1e6467a --- src/cmd/auxstats/Darwin.c +++ src/cmd/auxstats/Darwin.c @@ -338,7 +338,7 @@ isys(char *name) void xvm(int first) { - uvlong total; + natural_t total, active; if(first) return; @@ -347,8 +347,13 @@ xvm(int first) + sample.vm_stat.active_count + sample.vm_stat.inactive_count + sample.vm_stat.wire_count; + + active = sample.vm_stat.active_count + + sample.vm_stat.inactive_count + + sample.vm_stat.wire_count; + if(total) - Bprint(&bout, "mem =%lld %lld\n", sample.vm_stat.active_count, total); + Bprint(&bout, "mem =%lud %lud\n", active, total); Bprint(&bout, "context %lld 1000\n", (vlong)sample.csw); Bprint(&bout, "syscall %lld 1000\n", (vlong)sample.syscalls_mach+sample.syscalls_unix);