summaryrefslogtreecommitdiff
path: root/benchmark/bm_io_select.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_io_select.rb')
-rw-r--r--benchmark/bm_io_select.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmark/bm_io_select.rb b/benchmark/bm_io_select.rb
new file mode 100644
index 0000000000..19248daeb1
--- /dev/null
+++ b/benchmark/bm_io_select.rb
@@ -0,0 +1,9 @@
+# IO.select performance
+
+w = [ IO.pipe[1] ];
+
+nr = 1000000
+nr.times {
+ IO.select nil, w
+}
+