Set the 'free' memory value to the 'available' memory on windows
This commit is contained in:
parent
6d64cd6d43
commit
3b64944534
|
@ -42,6 +42,7 @@ func VirtualMemoryWithContext(ctx context.Context) (*VirtualMemoryStat, error) {
|
||||||
ret := &VirtualMemoryStat{
|
ret := &VirtualMemoryStat{
|
||||||
Total: memInfo.ullTotalPhys,
|
Total: memInfo.ullTotalPhys,
|
||||||
Available: memInfo.ullAvailPhys,
|
Available: memInfo.ullAvailPhys,
|
||||||
|
Free: memInfo.ullAvailPhys,
|
||||||
UsedPercent: float64(memInfo.dwMemoryLoad),
|
UsedPercent: float64(memInfo.dwMemoryLoad),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue