class Async::Scheduler

def fiber_interrupt(fiber, exception)

Raise an exception on the specified fiber, waking up the event loop if necessary.
def fiber_interrupt(fiber, exception)
	# Fiber.blocking{$stderr.puts "fiber_interrupt(#{fiber}, #{exception})"}
	unblock(nil, FiberInterrupt.new(fiber, exception))
end