github.com/Asutorufa/yuhaiin@v0.3.6-0.20240502055049-7984da7023a0/pkg/utils/system/system.go (about)

     1  package system
     2  
     3  import "runtime"
     4  
     5  var Procs = func() int {
     6  	procs := runtime.GOMAXPROCS(0)
     7  	if procs < 4 {
     8  		return 4
     9  	}
    10  	return procs
    11  }()