summaryrefslogtreecommitdiffstats
path: root/solaris
diff options
context:
space:
mode:
Diffstat (limited to 'solaris')
-rw-r--r--solaris/Platform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/solaris/Platform.c b/solaris/Platform.c
index 5117a448..c4b121c7 100644
--- a/solaris/Platform.c
+++ b/solaris/Platform.c
@@ -240,9 +240,9 @@ void Platform_setMemoryValues(Meter* this) {
const Machine* host = this->host;
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"
// 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"
}