]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: update docs for GOMAXPROCS
authoripriver <g1ran1q@gmail.com>
Thu, 10 Sep 2020 10:08:21 +0000 (10:08 +0000)
committerKeith Randall <khr@golang.org>
Thu, 10 Sep 2020 14:44:25 +0000 (14:44 +0000)
https://github.com/golang/go/blob/master/doc/effective_go.html#L3211 is used to update the docs comment for `GOMAXPROCS` function.

Fixes #41275

Change-Id: I39f58e93a267c6e9f3ac6638ed51acbe5284ada2
GitHub-Last-Rev: e45c8ac5873979397d747838fd8d41e252aec489
GitHub-Pull-Request: golang/go#41276
Reviewed-on: https://go-review.googlesource.com/c/go/+/253537
Reviewed-by: Keith Randall <khr@golang.org>
src/runtime/debug.go

index 76eeb2e41afd82049dfbcd46cd36c333286c268b..f411b2267660f617411c0ab34d9af703b3e5f57e 100644 (file)
@@ -10,9 +10,8 @@ import (
 )
 
 // GOMAXPROCS sets the maximum number of CPUs that can be executing
-// simultaneously and returns the previous setting. If n < 1, it does not
-// change the current setting.
-// The number of logical CPUs on the local machine can be queried with NumCPU.
+// simultaneously and returns the previous setting. It defaults to
+// the value of runtime.NumCPU. If n < 1, it does not change the current setting.
 // This call will go away when the scheduler improves.
 func GOMAXPROCS(n int) int {
        if GOARCH == "wasm" && n > 1 {