singlethreaded/lib.go

8 lines
81 B
Go

package singlethreaded
import "runtime"
func init() {
runtime.GOMAXPROCS(1)
}