Merge pull request #222 from diptanu/master

Casting the values of working set and page file to uint64
pull/226/head
shirou 9 years ago committed by GitHub
commit bbb9025bfa

@ -257,8 +257,8 @@ func (p *Process) MemoryInfo() (*MemoryInfoStat, error) {
} }
ret := &MemoryInfoStat{ ret := &MemoryInfoStat{
RSS: mem.WorkingSetSize, RSS: uint64(mem.WorkingSetSize),
VMS: mem.PagefileUsage, VMS: uint64(mem.PagefileUsage),
} }
return ret, nil return ret, nil

Loading…
Cancel
Save