diff options
author | Rob Landley <rob@landley.net> | 2012-08-25 14:25:22 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-08-25 14:25:22 -0500 |
commit | 3a9241add947cb6d24b5de7a8927517426a78795 (patch) | |
tree | d122ab6570439cd6b17c7d73ed8d4e085e0b8a95 /toys/other/free.c | |
parent | 689f095bc976417bf50810fe59a3b3ac32b21105 (diff) | |
download | toybox-3a9241add947cb6d24b5de7a8927517426a78795.tar.gz |
Move commands into "posix", "lsb", and "other" menus/directories.
Diffstat (limited to 'toys/other/free.c')
-rw-r--r-- | toys/other/free.c | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/toys/other/free.c b/toys/other/free.c new file mode 100644 index 00000000..99dca86d --- /dev/null +++ b/toys/other/free.c @@ -0,0 +1,60 @@ +/* vi: set sw=4 ts=4: + * + * free.c - Display amount of free and used memory in the system. + * + * Copyright 2012 Elie De Brauwer <eliedebrauwer@gmail.com> + * + * Not in SUSv4. + +USE_FREE(NEWTOY(free, "gmkb", TOYFLAG_USR|TOYFLAG_BIN)) + +config FREE + bool "free" + default y + help + usage: free [-bkmg] + + Display the total, free and used amount of physical memory and + swap space. + + -bkmg Output in bytes (default), KB, MB or GB +*/ + +#include "toys.h" + +static unsigned long long convert(unsigned long d, unsigned int iscale, + unsigned int oscale) +{ + return ((unsigned long long)d*iscale)>>oscale; +} + +void free_main(void) +{ + struct sysinfo info; + unsigned int iscale = 1; + unsigned int oscale = 0; + + sysinfo(&info); + if (info.mem_unit) iscale = info.mem_unit; + if (toys.optflags & 1) oscale = 0; + if (toys.optflags & 2) oscale = 10; + if (toys.optflags & 4) oscale = 20; + if (toys.optflags & 8) oscale = 30; + + xprintf("\t\ttotal used free shared buffers\n"); + xprintf("Mem:%17llu%12llu%12llu%12llu%12llu\n", + convert(info.totalram, iscale, oscale), + convert(info.totalram-info.freeram, iscale, oscale), + convert(info.freeram, iscale, oscale), + convert(info.sharedram, iscale, oscale), + convert(info.bufferram, iscale, oscale)); + + xprintf("-/+ buffers/cache:%15llu%12llu\n", + convert(info.totalram - info.freeram - info.bufferram, iscale, oscale), + convert(info.freeram + info.bufferram, iscale, oscale)); + + xprintf("Swap:%16llu%12llu%12llu\n", + convert(info.totalswap, iscale, oscale), + convert(info.totalswap - info.freeswap, iscale, oscale), + convert(info.freeswap, iscale, oscale)); +} |