diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-12 21:50:03 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-12 22:02:18 -0400 |
commit | 6cf247f795004f7e9a2e99cd245fadd9598bc10b (patch) | |
tree | cdd720522a783644f1aea446e454a26f2d0ace13 | |
parent | 9a652bf4cfc943a5a59d23ea19c1efb202af5286 (diff) |
kstat: vm: Log total system memory supportedmain
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | usr.bin/kstat/kstat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/kstat/kstat.c b/usr.bin/kstat/kstat.c index d8df9f8..f062015 100644 --- a/usr.bin/kstat/kstat.c +++ b/usr.bin/kstat/kstat.c @@ -70,6 +70,7 @@ get_vm_stat(void) close(fd); print_size_mib("memory available", vmstat.mem_avail); print_size_mib("memory used", vmstat.mem_used); + print_size_mib("memory total", vmstat.mem_total); } static void |