We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
runtime/proc1.go:1519: comparison of identifier nmspinning < 0 is always false
nmspinning is a uint32, so the throw statement is unreachable.
func resetspinning() { _g_ := getg() var nmspinning uint32 if _g_.m.spinning { _g_.m.spinning = false nmspinning = xadd(&sched.nmspinning, -1) if nmspinning < 0 { throw("findrunnable: negative nmspinning") }
The text was updated successfully, but these errors were encountered:
CL https://golang.org/cl/13877 mentions this issue.
Sorry, something went wrong.
3efe36d
No branches or pull requests
runtime/proc1.go:1519: comparison of identifier nmspinning < 0 is always false
nmspinning is a uint32, so the throw statement is unreachable.
The text was updated successfully, but these errors were encountered: