class IO::Event::Selector::Select

def wakeup

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