Created
November 23, 2022 12:29
-
-
Save qnighy/b9cc420721de7aca39de5aeaa712de48 to your computer and use it in GitHub Desktop.
Race condition example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$counter = 0 | |
def update | |
if $counter.even? | |
$counter += 3 | |
else | |
$counter -= 1 | |
end | |
end | |
th = Thread.new do | |
100000000.times do | |
update | |
end | |
end | |
100000000.times do | |
update | |
end | |
th.join | |
p $counter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment