diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-11-17 11:24:07 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-11-17 11:24:07 +0000 |
commit | b37c003e2450d71dc97958e79660972701458cf3 (patch) | |
tree | 8b99c20e3c3b9558de2b499183d1766d25aaa7ab /benchmark | |
parent | b5907f7d46d74dda26479a4ed4f8b78a6d51dcf9 (diff) | |
download | ruby-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')
-rw-r--r-- | benchmark/bm_io_select2.rb | 6 | ||||
-rw-r--r-- | benchmark/bm_io_select3.rb | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/benchmark/bm_io_select2.rb b/benchmark/bm_io_select2.rb index 7b167af774..10e37d71b2 100644 --- a/benchmark/bm_io_select2.rb +++ b/benchmark/bm_io_select2.rb @@ -2,7 +2,11 @@ ios = [] nr = 1000000 -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 / 2) - 10).times do 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 |