Files
open-im-server/tools/ncpu/main.go
T

14 lines
148 B
Go
Raw Normal View History

2023-08-08 11:24:15 +08:00
package main
import (
"fmt"
"runtime"
"go.uber.org/automaxprocs/maxprocs"
)
func main() {
maxprocs.Set()
fmt.Print(runtime.GOMAXPROCS(0))
}