# File lib/cgikit/application.rb, line 624
    def synchronize( &block )
      unless @concurrent_request_handling then
        @lock.enter
      end
      begin
        block.call
      ensure
        unless @concurrent_request_handling then
          @lock.exit
        end
      end
    end