mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
19 lines
590 B
C
19 lines
590 B
C
#include "memory.h"
|
|
#include "common/sysctl.h"
|
|
|
|
#include <sys/param.h>
|
|
#include <uvm/uvm_extern.h>
|
|
|
|
const char* ffDetectMemory(FFMemoryResult* ram) {
|
|
struct uvmexp buf;
|
|
size_t length = sizeof(buf);
|
|
if (sysctl((int[]) { CTL_VM, VM_UVMEXP }, 2, &buf, &length, NULL, 0) < 0) {
|
|
return "sysctl(CTL_VM, VM_UVMEXP) failed";
|
|
}
|
|
|
|
ram->bytesTotal = (uint64_t) buf.npages * instance.state.platform.sysinfo.pageSize;
|
|
ram->bytesUsed = ((uint64_t) buf.active + (uint64_t) buf.inactive + (uint64_t) buf.wired) * instance.state.platform.sysinfo.pageSize;
|
|
|
|
return NULL;
|
|
}
|