class IO::Event::Selector::Select

def wakeup

If the event loop is currently blocked,
def wakeup
	if @blocked
		@interrupt.signal
		
		return true
	end
	
	return false
end