blob: aeb1a3a80405614d0ad248020f49bba93422c22b [file] [log] [blame]
// +build !linux,!windows
package sysinfo
import (
"runtime"
)
// NumCPU returns the number of CPUs
func NumCPU() int {
return runtime.NumCPU()
}