aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm_thread_mutex1.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-16 18:09:03 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-16 18:09:03 +0000
commit98d45ef140dcc53f4dd7c0dbdd25433d5c378ff7 (patch)
treea942043b1b58827011e9ccbf7bcde02ff5acbba5 /benchmark/bm_vm_thread_mutex1.rb
parentb3e68b1d12e605fa2770c04c5212be595cc7e92a (diff)
downloadruby-98d45ef140dcc53f4dd7c0dbdd25433d5c378ff7.tar.gz
* 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
Diffstat (limited to 'benchmark/bm_vm_thread_mutex1.rb')
-rw-r--r--benchmark/bm_vm_thread_mutex1.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/benchmark/bm_vm_thread_mutex1.rb b/benchmark/bm_vm_thread_mutex1.rb
new file mode 100644
index 0000000000..faf8da122f
--- /dev/null
+++ b/benchmark/bm_vm_thread_mutex1.rb
@@ -0,0 +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<lmax
+ i+=1
+ m.synchronize{
+ r += 1
+ }
+ end
+ }
+}.each{|e|
+ e.join
+}
+raise r.to_s if r != max * max