summaryrefslogtreecommitdiff
path: root/trunk/benchmark/bm_vm3_thread_mutex.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/benchmark/bm_vm3_thread_mutex.rb')
-rw-r--r--trunk/benchmark/bm_vm3_thread_mutex.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/trunk/benchmark/bm_vm3_thread_mutex.rb b/trunk/benchmark/bm_vm3_thread_mutex.rb
deleted file mode 100644
index 649f1fddac..0000000000
--- a/trunk/benchmark/bm_vm3_thread_mutex.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require 'thread'
-m = Mutex.new
-r = 0
-max = 1000
-(1..max).map{
- Thread.new{
- i=0
- while i<max
- i+=1
- m.synchronize{
- r += 1
- }
- end
- }
-}.each{|e|
- e.join
-}
-raise r.to_s if r != max * max