summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_mutex.rb
blob: 7362f738c590715ca7d6409cc8c546b75d100ce6 (plain)
1
2
3
4
5
6
7
8
9
require 'thread'

m = Mutex.new

i = 0
while i<6_000_000 # benchmark loop 2
  i += 1
  m.synchronize{}
end