diff options
author | Laslo Hunhold <dev@frign.de> | 2018-05-19 22:52:17 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-19 22:58:21 +0200 |
commit | 46c4540dd2f6181e77b0800a4e007d78d0162487 (patch) | |
tree | 7fcec772ef1dd3dbb8bdcaf30aa48c2fea1d096f /components/swap.c | |
parent | 74c4f4ebdae8a12fc95840954dde574692234b01 (diff) |
Implement fmt_human_2() and fmt_human_10()
These functions take the raw number and a unit and automatically
print it out "scaled down" to a proper SI-prefix, for powers of 2
and 10 respectively.
Apply them to the 2-power cases and keep the 10-power for a later
commit.
Diffstat (limited to 'components/swap.c')
-rw-r--r-- | components/swap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/swap.c b/components/swap.c index 64feceb..c005691 100644 --- a/components/swap.c +++ b/components/swap.c @@ -48,7 +48,7 @@ } sscanf(match, "SwapFree: %ld kB\n", &free); - return fmt_scaled(free * 1024); + return fmt_human_2(free * 1024, "B"); } const char * @@ -94,7 +94,7 @@ } sscanf(match, "SwapTotal: %ld kB\n", &total); - return fmt_scaled(total * 1024); + return fmt_human_2(total * 1024, "B"); } const char * @@ -122,7 +122,7 @@ } sscanf(match, "SwapFree: %ld kB\n", &free); - return fmt_scaled((total - free - cached) * 1024); + return fmt_human_2((total - free - cached) * 1024, "B"); } #elif defined(__OpenBSD__) #include <stdlib.h> @@ -174,7 +174,7 @@ getstats(&total, &used); - return fmt_scaled((total - used) * 1024); + return fmt_human_2((total - used) * 1024, "B"); } const char * @@ -194,7 +194,7 @@ getstats(&total, &used); - return fmt_scaled(total * 1024); + return fmt_human_2(total * 1024, "B"); } const char * @@ -204,6 +204,6 @@ getstats(&total, &used); - return fmt_scaled(used * 1024); + return fmt_human_2(used * 1024, "B"); } #endif |