# File lib/Borges/RequestHandler/Session.rb, line 89
  def enter_session(&block)
    rv = nil

    in_thread do
      rv = with_escape_continuation do
        val = with_error_handler do
          redirect
          block.call
        end
      end
    end

    return rv
  end