forkIO : IO () -> IO ()
Fork an IO action into a new thread (Chez Scheme only).
tryIO : IO a -> IO a -> IO a
Run an IO action; if it throws a Scheme exception, run the fallback.