mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
18 lines
268 B
Ruby
18 lines
268 B
Ruby
|
# Mesure small and plenty pipe read/write.
|
||
|
# A performance may depend on GVL implementation.
|
||
|
|
||
|
lmax = 1_000_000
|
||
|
r, w = IO.pipe
|
||
|
[Thread.new{
|
||
|
lmax.times{
|
||
|
w.write('a')
|
||
|
}
|
||
|
p "w:exit"
|
||
|
}, Thread.new{
|
||
|
lmax.times{
|
||
|
r.read(1)
|
||
|
}
|
||
|
p "r:exit"
|
||
|
}].each{|t| t.join}
|
||
|
|