From: Christopher Huff Date: 2011-11-02T03:39:23+09:00 Subject: [ruby-core:40641] [ruby-trunk - Bug #5539][Open] Readline.readline() blocks all threads Issue #5539 has been reported by Christopher Huff. ---------------------------------------- Bug #5539: Readline.readline() blocks all threads http://redmine.ruby-lang.org/issues/5539 Author: Christopher Huff Status: Open Priority: Normal Assignee: Category: Target version: ruby -v: ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-darwin10.8.0] The standard library Readline.readline() function blocks the thread it's called from without unlocking the VM, thus blocking all threads. This code demonstrates the problem: require 'pp' t = Thread.new {10.times {|x| puts x; sleep 1}} while(buf = Readline.readline) p buf if(buf == 'q') break end end Thread t will be blocked by the readline call, numbers being printed occasionally when lines are entered and readline() returns, rather than once per second. Reproduced on ruby 1.9.2p180 (2011-02-18 revision 30909) [x86_64-darwin10.6.0] and ruby 1.9.3p0 (2011-10-30 revision 33570) [x86_64-darwin10.8.0]. The RubyInline gem allows a workaround: require 'inline' class BetterReadline inline :C do |builder| builder.include '' builder.include '' src = <