mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3707a76921
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>
12 lines
151 B
Go
12 lines
151 B
Go
// +build !linux,!windows
|
|
|
|
package sysinfo
|
|
|
|
import (
|
|
"runtime"
|
|
)
|
|
|
|
// NumCPU returns the number of CPUs
|
|
func NumCPU() int {
|
|
return runtime.NumCPU()
|
|
}
|