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/sigqueue.go:52: comparison of identifier s < 0 is always false
s is a uint32, so it can never be less than zero
func sigsend(s uint32) bool { bit := uint32(1) << uint(s&31) if !sig.inuse || s < 0 || int(s) >= 32*len(sig.wanted) || sig.wanted[s/32]&bit == 0 { return false }
The text was updated successfully, but these errors were encountered:
CL https://golang.org/cl/13940 mentions this issue.
Sorry, something went wrong.
a94e906
No branches or pull requests
runtime/sigqueue.go:52: comparison of identifier s < 0 is always false
s is a uint32, so it can never be less than zero
The text was updated successfully, but these errors were encountered: