Xinqi Bao's Git
projects
/
slstatus.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
Change to fmt_human in netspeeds on OpenBSD
[slstatus.git]
/
components
/
ram.c
diff --git
a/components/ram.c
b/components/ram.c
index
7c0870c
..
0ac9753
100644
(file)
--- a/
components/ram.c
+++ b/
components/ram.c
@@
-17,7
+17,7
@@
return NULL;
}
return NULL;
}
- return fmt_human
_2(free * 1024, "B"
);
+ return fmt_human
(free * 1024, 1024
);
}
const char *
}
const char *
@@
-34,8
+34,8
@@
return NULL;
}
return NULL;
}
- return bprintf("%d
%%
", 100 * ((total - free) -
-
(buffers + cached)) / total);
+ return bprintf("%d", 100 * ((total - free) -
+ (buffers + cached)) / total);
}
const char *
}
const char *
@@
-48,7
+48,7
@@
return NULL;
}
return NULL;
}
- return fmt_human
_2(total * 1024, "B"
);
+ return fmt_human
(total * 1024, 1024
);
}
const char *
}
const char *
@@
-65,8
+65,8
@@
return NULL;
}
return NULL;
}
- return fmt_human
_2
((total - free - buffers - cached) * 1024,
-
"B"
);
+ return fmt_human((total - free - buffers - cached) * 1024,
+
1024
);
}
#elif defined(__OpenBSD__)
#include <stdlib.h>
}
#elif defined(__OpenBSD__)
#include <stdlib.h>
@@
-85,7
+85,11
@@
size = sizeof(*uvmexp);
size = sizeof(*uvmexp);
- return sysctl(uvmexp_mib, 2, uvmexp, &size, NULL, 0) >= 0 ? 1 : 0;
+ if (sysctl(uvmexp_mib, 2, uvmexp, &size, NULL, 0) >= 0) {
+ return 1;
+ }
+
+ return 0;
}
const char *
}
const char *
@@
-96,7
+100,8
@@
if (load_uvmexp(&uvmexp)) {
free_pages = uvmexp.npages - uvmexp.active;
if (load_uvmexp(&uvmexp)) {
free_pages = uvmexp.npages - uvmexp.active;
- return fmt_human_2(pagetok(free_pages, uvmexp.pageshift) * 1024, "B");
+ return fmt_human(pagetok(free_pages, uvmexp.pageshift) *
+ 1024, 1024);
}
return NULL;
}
return NULL;
@@
-110,7
+115,7
@@
if (load_uvmexp(&uvmexp)) {
percent = uvmexp.active * 100 / uvmexp.npages;
if (load_uvmexp(&uvmexp)) {
percent = uvmexp.active * 100 / uvmexp.npages;
- return bprintf("%d
%%
", percent);
+ return bprintf("%d", percent);
}
return NULL;
}
return NULL;
@@
-122,7
+127,9
@@
struct uvmexp uvmexp;
if (load_uvmexp(&uvmexp)) {
struct uvmexp uvmexp;
if (load_uvmexp(&uvmexp)) {
- return fmt_human_2(pagetok(uvmexp.npages, uvmexp.pageshift) * 1024, "B");
+ return fmt_human(pagetok(uvmexp.npages,
+ uvmexp.pageshift) * 1024,
+ 1024);
}
return NULL;
}
return NULL;
@@
-134,7
+141,9
@@
struct uvmexp uvmexp;
if (load_uvmexp(&uvmexp)) {
struct uvmexp uvmexp;
if (load_uvmexp(&uvmexp)) {
- return fmt_human_2(pagetok(uvmexp.active, uvmexp.pageshift) * 1024, "B");
+ return fmt_human(pagetok(uvmexp.active,
+ uvmexp.pageshift) * 1024,
+ 1024);
}
return NULL;
}
return NULL;