plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 4492a1eef753032e1be77e7359b1b4544a1d1bb6
parent 86190ea39d2f42af86b9a7ffefaf32f385040f5c
Author: rsc <devnull@localhost>
Date:   Thu, 12 Apr 2007 14:18:57 +0000

better memory stats (Jeff Sickel)

Diffstat:
Msrc/cmd/auxstats/Darwin.c | 9+++++++--
1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/cmd/auxstats/Darwin.c b/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);