mirror of
https://github.com/MatsuriDayo/NekoBoxForAndroid.git
synced 2025-12-18 22:20:06 +08:00
14 lines
191 B
Go
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
|
|
}
|