Commit a04adcaf authored by Gabriel Aszalos's avatar Gabriel Aszalos Committed by Ian Lance Taylor

runtime: remove the 'go:nosplit' directive from documentation

The //go:nosplit directive was visible in GoDoc because the function
that it preceeded (Gosched) is exported. This change moves the directive
above the documentation, hiding it from the output.

Change-Id: I281fd7573f11d977487809f74c9cc16b2af0dc88
Reviewed-on: https://go-review.googlesource.com/69120
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent 244c98fe
...@@ -249,9 +249,10 @@ func forcegchelper() { ...@@ -249,9 +249,10 @@ func forcegchelper() {
} }
} }
//go:nosplit
// Gosched yields the processor, allowing other goroutines to run. It does not // Gosched yields the processor, allowing other goroutines to run. It does not
// suspend the current goroutine, so execution resumes automatically. // suspend the current goroutine, so execution resumes automatically.
//go:nosplit
func Gosched() { func Gosched() {
mcall(gosched_m) mcall(gosched_m)
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment