зеркало из https://github.com/github/ruby.git
10 строки
92 B
Ruby
10 строки
92 B
Ruby
|
# IO.select performance
|
||
|
|
||
|
w = [ IO.pipe[1] ];
|
||
|
|
||
|
nr = 1000000
|
||
|
nr.times {
|
||
|
IO.select nil, w
|
||
|
}
|
||
|
|