Skip to content

Instantly share code, notes, and snippets.

@qnighy
Created November 23, 2022 12:29
Show Gist options
  • Save qnighy/b9cc420721de7aca39de5aeaa712de48 to your computer and use it in GitHub Desktop.
Save qnighy/b9cc420721de7aca39de5aeaa712de48 to your computer and use it in GitHub Desktop.
Race condition example
$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