mirror of
https://github.com/moby/moby.git
synced 2026-07-04 05:39:06 +00:00
This fix tries to fix wrong CPU count after CPU hot-plugging. On windows, GetProcessAffinityMask has been used to probe the number of CPUs in real time. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
13 lines
151 B
Go
13 lines
151 B
Go
// +build !linux,!windows
|
|
|
|
package sysinfo
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
// NumCPU returns the number of CPUs
|
|
func NumCPU() int {
|
|
return runtime.NumCPU()
|
|
}
|