class IO::Event::Selector::Select

def wakeup

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