summaryrefslogtreecommitdiff
path: root/ruby_2_2/benchmark/bm_vm_thread_mutex3.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/benchmark/bm_vm_thread_mutex3.rb')
-rw-r--r--ruby_2_2/benchmark/bm_vm_thread_mutex3.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/ruby_2_2/benchmark/bm_vm_thread_mutex3.rb b/ruby_2_2/benchmark/bm_vm_thread_mutex3.rb
deleted file mode 100644
index 7f9a44b39d..0000000000
--- a/ruby_2_2/benchmark/bm_vm_thread_mutex3.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# 1000 threads, one mutex
-
-require 'thread'
-m = Mutex.new
-r = 0
-max = 2000
-(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