NekoBoxForAndroid/libcore/device/device.go
2023-03-15 00:00:00 +00:00

14 lines
191 B
Go

package device
import (
"runtime"
)
func NumUDPWorkers() int {
numUDPWorkers := 4
if num := runtime.GOMAXPROCS(0); num > numUDPWorkers {
numUDPWorkers = num
}
return numUDPWorkers
}