runtime: fix a typo mistake in comments

Change-Id: I33790af9fd0c2f6fdeaf9778c1381e0e6d697abb
Reviewed-on: https://go-review.googlesource.com/111755
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Zhou Peng 2018-05-07 07:34:53 +00:00 committed by Brad Fitzpatrick
parent 15ac56fd60
commit 7b7a854c04
1 changed files with 1 additions and 1 deletions

View File

@ -4972,7 +4972,7 @@ func sync_runtime_canSpin(i int) bool {
// Spin only few times and only if running on a multicore machine and
// GOMAXPROCS>1 and there is at least one other running P and local runq is empty.
// As opposed to runtime mutex we don't do passive spinning here,
// because there can be work on global runq on on other Ps.
// because there can be work on global runq or on other Ps.
if i >= active_spin || ncpu <= 1 || gomaxprocs <= int32(sched.npidle+sched.nmspinning)+1 {
return false
}