1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-24 13:48:56 +08:00
shirou_gopsutil/cpu/cpu_netbsd_arm64.go

11 lines
144 B
Go
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
package cpu
type cpuTimes struct {
2023-09-17 01:43:13 +08:00
User uint64
Nice uint64
Sys uint64
2023-09-17 01:43:13 +08:00
Intr uint64
Idle uint64
}