8 lines
81 B
Go
8 lines
81 B
Go
|
package singlethreaded
|
||
|
|
||
|
import "runtime"
|
||
|
|
||
|
func init() {
|
||
|
runtime.GOMAXPROCS(1)
|
||
|
}
|