# File lib_core/rucy/restart.rb, line 42
    def cancel
      @lock.synchronize{
        unless (@state) then
          @state = :cancel
          @cond.signal
        end
      }
      nil
    end