summaryrefslogtreecommitdiffstats
path: root/dragonflybsd
diff options
context:
space:
mode:
authorKevin Bracey <kevin@bracey.fi>2022-01-09 13:27:52 +0200
committerIvan Shapovalov <intelfx@intelfx.name>2023-10-26 03:14:33 +0400
commit69a505d69cb69018b1581103e0dcbab5f7a0d6b1 (patch)
tree0353879bf12086f2bccde9140aa08a4d1966f186 /dragonflybsd
parent09934e6630621f05e8c339c0633ef9eb24f1fc2c (diff)
Move shared memory next to used memory
Shared memory is less available than buffers, so move it left next to used memory. This is in preparation for including shared memory in the basic "in use" for the bar text. It would not make sense to sum a discontiguous region.
Diffstat (limited to 'dragonflybsd')
-rw-r--r--dragonflybsd/Platform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dragonflybsd/Platform.c b/dragonflybsd/Platform.c
index d94d7a18..ff2300aa 100644
--- a/dragonflybsd/Platform.c
+++ b/dragonflybsd/Platform.c
@@ -214,9 +214,9 @@ void Platform_setMemoryValues(Meter* this) {
this->total = host->totalMem;
this->values[MEMORY_METER_USED] = host->usedMem;
- this->values[MEMORY_METER_BUFFERS] = host->buffersMem;
// this->values[MEMORY_METER_SHARED] = "shared memory, like tmpfs and shm"
- // mtr->values[MEMORY_METER_COMPRESSED] = "compressed memory, like zswap on linux"
+ // this->values[MEMORY_METER_COMPRESSED] = "compressed memory, like zswap on linux"
+ this->values[MEMORY_METER_BUFFERS] = host->buffersMem;
this->values[MEMORY_METER_CACHE] = host->cachedMem;
// this->values[MEMORY_METER_AVAILABLE] = "available memory"
}

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