mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
17 lines
338 B
Go
17 lines
338 B
Go
|
// Package maxprocs automatically sets GOMAXPROCS to match the Linux
|
||
|
// container CPU quota, if any. This will not override the environment
|
||
|
// variable of GOMAXPROCS.
|
||
|
package maxprocs
|
||
|
|
||
|
import (
|
||
|
"go.uber.org/automaxprocs/maxprocs"
|
||
|
)
|
||
|
|
||
|
// Initialize Uber maxprocs.
|
||
|
func init() {
|
||
|
_, err := maxprocs.Set()
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|