RFR: Samples for race condition

Michael Mirwaldt github.com+6693355+mmirwaldt at openjdk.java.net
Wed Jun 30 21:21:12 UTC 2021


On Wed, 30 Jun 2021 20:47:48 GMT, Vladimir Sitnikov <vsitnikov at openjdk.org> wrote:

>> I have created two more samples:
>> 
>> - one sample for read-modify-write-sequences
>> - one sample for check-then-react-sequences
>
> jcstress-samples/src/main/java/org/openjdk/jcstress/samples/high/race/condition/RaceCondition_02_CheckThenReactSequence.java line 49:
> 
>> 47: @JCStressTest
>> 48: @Outcome(id = {"true, false", "false, true"}, expect = ACCEPTABLE, desc = "Only one actor got true for the flag in its if-clause")
>> 49: @Outcome(id = {"true, true"}, expect = FORBIDDEN, desc = "Both actors got true for the flag in their if-clauses")
> 
> Could you clarify why do you put `forbidden` here?
> 
> The implementation does allow `true, true` outcome since it does not synchronize actors.

Yes, I can. I considered the outcome "true, true" as the undesirable result of the check-then-react-sequence.
I regard all those race conditions as a kind of "bug patterns" for concurrent programs.
What do you think and what do you propose?

-------------

PR: https://git.openjdk.java.net/jcstress/pull/88


More information about the jcstress-dev mailing list