singlethreaded/lib.go

8 lines
81 B
Go
Raw Normal View History

2022-11-20 15:47:49 +09:00
package singlethreaded
import "runtime"
func init() {
runtime.GOMAXPROCS(1)
}