# File lib/daemons/monitor.rb, line 118
    def stop
      begin; Process.kill(Application::SIGNAL, @pid.pid); rescue ::Exception; end
      
      # We try to remove the pid-files by ourselves, in case the application
      # didn't clean it up.
      begin; @pid.cleanup; rescue ::Exception; end
    end