xmtop/devices/cpu_other.go

10 lines
138 B
Go
Raw Permalink Normal View History

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