You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
426 B
16 lines
426 B
// +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 |
|
}
|
|
|