aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_io_select3.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-17 11:24:07 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-17 11:24:07 +0000
commitb37c003e2450d71dc97958e79660972701458cf3 (patch)
tree8b99c20e3c3b9558de2b499183d1766d25aaa7ab /benchmark/bm_io_select3.rb
parentb5907f7d46d74dda26479a4ed4f8b78a6d51dcf9 (diff)
downloadruby-b37c003e2450d71dc97958e79660972701458cf3.tar.gz
* benchmark/bm_io_select[23].rb: use Process::RLIMIT_NOFILE only when
it is defined. if it is not defined, assume 64 as the max of fds. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33778 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark/bm_io_select3.rb')
-rw-r--r--benchmark/bm_io_select3.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/benchmark/bm_io_select3.rb b/benchmark/bm_io_select3.rb
index fcdbb96e0e..7d0ba1f092 100644
--- a/benchmark/bm_io_select3.rb
+++ b/benchmark/bm_io_select3.rb
@@ -2,7 +2,11 @@
ios = []
nr = 100
-max = Process.getrlimit(Process::RLIMIT_NOFILE)[0]
+if defined?(Process::RLIMIT_NOFILE)
+ max = Process.getrlimit(Process::RLIMIT_NOFILE)[0]
+else
+ max = 64
+end
puts "max fd: #{max} (results not apparent with <= 1024 max fd)"
(max - 10).times do