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