-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
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: race detector: more aggressive scheduler perturbations #22569
Comments
CC @dvyukov |
Calling recv and close concurrently is perfectly fine and in fact a common idiom. Behavior is defined and is useful. |
Yes, that's true. However, a In this particular example, that makes the existence of the race itself nondeterministic: if goroutine scheduling is favorable, the first However, if goroutine scheduling is unfavorable, the Perhaps one way to make the race detector more useful for select-with-default races would be to make the scheduler more aggressive (i.e., less deterministic) when the race detector is active. A more deterministic option might be to check whether the first (or last) send or close event on the channel happens before the |
The problem is more general and is not specific to selects. Consider: if atomic.LoadUint32(&x) == 0 {
atomic.StoreUint32(&x, 1)
y++
} If 2 goroutines sneak into the if before one of them sets x=1, there will be a race on y. But most of the time there won't be a race. |
A program was posted to golang-nuts, with the question “is this code thread [safe]?”
The program has a race: it executes a
select
with a default case many times in parallel, and the default case callsclose
on a channel. (You can see the race by inserting aruntime.Gosched()
: https://play.golang.org/p/_PWTTCwPgi.)To my surprise, the program runs without error even with the race detector enabled.
The Go Memory Model defines an order between sends and receives but not between closes and sends or closes and other closes, so I think this is technically a data race (and not just a logic race). The race detector should report it.
src/racy/main.go
:The text was updated successfully, but these errors were encountered: