mirror of
https://github.com/kemko/nomad.git
synced 2026-01-04 17:35:43 +03:00
Fixed build on windows/386
This commit is contained in:
4
vendor/github.com/shirou/gopsutil/process/process_windows.go
generated
vendored
4
vendor/github.com/shirou/gopsutil/process/process_windows.go
generated
vendored
@@ -257,8 +257,8 @@ func (p *Process) MemoryInfo() (*MemoryInfoStat, error) {
|
||||
}
|
||||
|
||||
ret := &MemoryInfoStat{
|
||||
RSS: mem.WorkingSetSize,
|
||||
VMS: mem.PagefileUsage,
|
||||
RSS: uint64(mem.WorkingSetSize),
|
||||
VMS: uint64(mem.PagefileUsage),
|
||||
}
|
||||
|
||||
return ret, nil
|
||||
|
||||
Reference in New Issue
Block a user