From 98d45ef140dcc53f4dd7c0dbdd25433d5c378ff7 Mon Sep 17 00:00:00 2001 From: ko1 Date: Thu, 16 Jun 2011 18:09:03 +0000 Subject: * benchmark/bm_vm4_thread_create_join.rb, benchmark/bm_vm4_thread_mutex[1-3].rb: renamed to bm_thread_* (fix last rename). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- benchmark/bm_vm4_thread_create_join.rb | 6 ------ benchmark/bm_vm4_thread_mutex1.rb | 21 --------------------- benchmark/bm_vm4_thread_mutex2.rb | 21 --------------------- benchmark/bm_vm4_thread_mutex3.rb | 20 -------------------- benchmark/bm_vm_thread_create_join.rb | 6 ++++++ benchmark/bm_vm_thread_mutex1.rb | 21 +++++++++++++++++++++ benchmark/bm_vm_thread_mutex2.rb | 21 +++++++++++++++++++++ benchmark/bm_vm_thread_mutex3.rb | 20 ++++++++++++++++++++ 8 files changed, 68 insertions(+), 68 deletions(-) delete mode 100644 benchmark/bm_vm4_thread_create_join.rb delete mode 100644 benchmark/bm_vm4_thread_mutex1.rb delete mode 100644 benchmark/bm_vm4_thread_mutex2.rb delete mode 100644 benchmark/bm_vm4_thread_mutex3.rb create mode 100644 benchmark/bm_vm_thread_create_join.rb create mode 100644 benchmark/bm_vm_thread_mutex1.rb create mode 100644 benchmark/bm_vm_thread_mutex2.rb create mode 100644 benchmark/bm_vm_thread_mutex3.rb (limited to 'benchmark') diff --git a/benchmark/bm_vm4_thread_create_join.rb b/benchmark/bm_vm4_thread_create_join.rb deleted file mode 100644 index 325a66d587..0000000000 --- a/benchmark/bm_vm4_thread_create_join.rb +++ /dev/null @@ -1,6 +0,0 @@ -i=0 -while i<100_000 # benchmark loop 3 - i+=1 - Thread.new{ - }.join -end diff --git a/benchmark/bm_vm4_thread_mutex1.rb b/benchmark/bm_vm4_thread_mutex1.rb deleted file mode 100644 index faf8da122f..0000000000 --- a/benchmark/bm_vm4_thread_mutex1.rb +++ /dev/null @@ -1,21 +0,0 @@ -# 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