summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm2_mutex.rb
blob: f342d0a56e1b8ebb16b838f33ee55e912fc9cb04 (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