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

m = Thread::Mutex.new

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