summaryrefslogtreecommitdiff
path: root/benchmark/bm_vm_thread_pass_flood.rb
blob: 56b5b0a9565d1ce2853638df3bc9758e5d3b0101 (plain)
1
2
3
4
5
6
7
8
1000.times{
  Thread.new{loop{Thread.pass}}
}

i=0
while i<10000
  i += 1
end