xmtop/devices/cpu_other.go
寻觅 9dcbd2a48e
Some checks failed
Build Go binaries / build (push) Has been cancelled
[修复] 更新依赖, 修复龙架构无法正常编译的问题
2024-09-13 15:08:35 +08:00

10 lines
138 B
Go

// +build !linux
package devices
import "github.com/shirou/gopsutil/v3/cpu"
func CpuCount() (int, error) {
return cpu.Counts(false)
}