File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,12 @@ type win32_Processor struct { //nolint:revive //FIXME
34
34
// additional fields documented here
35
35
// https://www.geoffchappell.com/studies/windows/km/ntoskrnl/api/ex/sysinfo/processor_performance.htm
36
36
type win32_SystemProcessorPerformanceInformation struct { //nolint:revive //FIXME
37
- IdleTime int64 // idle time in 100ns (this is not a filetime).
38
- KernelTime int64 // kernel time in 100ns. kernel time includes idle time. (this is not a filetime).
39
- UserTime int64 // usertime in 100ns (this is not a filetime).
40
- DpcTime int64 // dpc time in 100ns (this is not a filetime).
41
- InterruptTime int64 // interrupt time in 100ns
42
- InterruptCount uint32
37
+ IdleTime int64 // idle time in 100ns (this is not a filetime).
38
+ KernelTime int64 // kernel time in 100ns. kernel time includes idle time. (this is not a filetime).
39
+ UserTime int64 // usertime in 100ns (this is not a filetime).
40
+ DpcTime int64 // dpc time in 100ns (this is not a filetime).
41
+ InterruptTime int64 // interrupt time in 100ns
42
+ InterruptCount uint64 // ULONG needs to be uint64
43
43
}
44
44
45
45
const (
You can’t perform that action at this time.
0 commit comments