# File lib_core/rucy/server.rb, line 159
    def restart
      @accept_lock.synchronize{
        if (@accept_state == :open) then
          @accept_state = :restart
          @accept_thread.raise(ServerRestartException, 'restart server')
        end
      }

      nil
    end