summaryrefslogtreecommitdiffstats
path: root/dragonflybsd
diff options
context:
space:
mode:
authorDavid Zarzycki <dave@znu.io>2021-01-07 08:38:18 -0500
committerBenBE <BenBE@geshi.org>2021-01-11 20:27:47 +0100
commit37e186fd6626e83f51d0267052677355575964d4 (patch)
treec3212ebbc5a948c4ede190defadd8f56e097d45b /dragonflybsd
parentf4404effa45ce378a8a72f2fff9641c7d7a0cc6f (diff)
Linux: Add SwapCached to the swap meter
According to the Linux kernel documentation, "SwapCached" tracks "memory that once was swapped out, is swapped back in but still also is in the swapfile (if memory is needed it doesn't need to be swapped out AGAIN because it is already in the swapfile. This saves I/O)."
Diffstat (limited to 'dragonflybsd')
-rw-r--r--dragonflybsd/Platform.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dragonflybsd/Platform.c b/dragonflybsd/Platform.c
index 8ce216c1..2abf4de3 100644
--- a/dragonflybsd/Platform.c
+++ b/dragonflybsd/Platform.c
@@ -205,6 +205,7 @@ void Platform_setSwapValues(Meter* this) {
const ProcessList* pl = this->pl;
this->total = pl->totalSwap;
this->values[0] = pl->usedSwap;
+ this->values[1] = NAN;
}
char* Platform_getProcessEnv(pid_t pid) {

© 2014-2024 Faster IT GmbH | imprint | privacy policy