class IO::Event::Selector::Select

def yield

Yield from the current fiber back to the event loop. Put the current fiber into the ready list.
def yield
	optional = Optional.new(Fiber.current)
	@ready.push(optional)
	
	@loop.transfer
ensure
	optional.nullify
end