tbetter memory stats (Jeff Sickel) - plan9port - [fork] Plan 9 from user space
git clone git://src.adamsgaard.dk/plan9port
Log
Files
Refs
README
LICENSE
---
commit 4492a1eef753032e1be77e7359b1b4544a1d1bb6
parent 86190ea39d2f42af86b9a7ffefaf32f385040f5c
Author: rsc 
Date:   Thu, 12 Apr 2007 14:18:57 +0000

better memory stats (Jeff Sickel)

Diffstat:
  M src/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
t@@ -338,7 +338,7 @@ isys(char *name)
 void
 xvm(int first)
 {
-        uvlong total;
+        natural_t total, active;
 
         if(first)
                 return;
t@@ -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);