diff --git a/benchmark/bm_vm3_clearmethodcache.rb b/benchmark/bm_vm3_clearmethodcache.rb index ba45a60b3f..a25c372f06 100644 --- a/benchmark/bm_vm3_clearmethodcache.rb +++ b/benchmark/bm_vm3_clearmethodcache.rb @@ -1,8 +1,8 @@ -i=0 -while i<200_000 - i+=1 - - Class.new{ - def m; end - } -end +i=0 +while i<200_000 + i+=1 + + Class.new{ + def m; end + } +end diff --git a/benchmark/bm_vm3_thread_mutex1.rb b/benchmark/bm_vm3_thread_mutex1.rb index d1ba792291..faf8da122f 100644 --- a/benchmark/bm_vm3_thread_mutex1.rb +++ b/benchmark/bm_vm3_thread_mutex1.rb @@ -1,21 +1,21 @@ -# one thread, one mutex (no contention) - -require 'thread' -m = Mutex.new -r = 0 -max = 1000 -lmax = max * max -(1..1).map{ - Thread.new{ - i=0 - while i