cmd/syncthing: Remove legacy GOMAXPROCS handling (ref #9436)

This commit is contained in:
Jakob Borg 2024-02-26 13:12:57 +01:00
parent 86c4cafc96
commit 2d968d46b7
1 changed files with 0 additions and 5 deletions

View File

@ -22,7 +22,6 @@ import (
"path"
"path/filepath"
"regexp"
"runtime"
"runtime/pprof"
"sort"
"strconv"
@ -651,10 +650,6 @@ func syncthingMain(options serveOptions) {
setupSignalHandling(app)
if os.Getenv("GOMAXPROCS") == "" {
runtime.GOMAXPROCS(runtime.NumCPU())
}
if options.DebugProfileCPU {
f, err := os.Create(fmt.Sprintf("cpu-%d.pprof", os.Getpid()))
if err != nil {