mirror of https://github.com/shirou/gopsutil
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
426 B
Go
17 lines
426 B
Go
9 years ago
|
// +build windows
|
||
|
|
||
|
package process
|
||
|
|
||
|
type PROCESS_MEMORY_COUNTERS struct {
|
||
|
CB uint32
|
||
|
PageFaultCount uint32
|
||
|
PeakWorkingSetSize uint32
|
||
|
WorkingSetSize uint32
|
||
|
QuotaPeakPagedPoolUsage uint32
|
||
|
QuotaPagedPoolUsage uint32
|
||
|
QuotaPeakNonPagedPoolUsage uint32
|
||
|
QuotaNonPagedPoolUsage uint32
|
||
|
PagefileUsage uint32
|
||
|
PeakPagefileUsage uint32
|
||
|
}
|