summaryrefslogtreecommitdiff
path: root/benchmark/vm2_mutex.yml
blob: 8aefe23b45be5214b451151bd13a4f5478b1d4da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
benchmark:
  vm2_mutex: |
    require 'thread'

    m = Thread::Mutex.new

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