What is a "watchdog reset"?

9,644

Having a watchdog on an embedded system will dramatically improve the availability of the device. Instead of waiting for the user to see that the device is frozen or broken, it will reset if the software fails to update at some interval. Some examples:

The device is designed in such a way that its state is saved somewhere periodically(like Juniper routers that run FreeBSD, Android phones, and dvrs that run linux). So even if it is rebooted it should re-enter a working configuration.

Share:
9,644
Bryan Agee
Author by

Bryan Agee

Bryan has years of experience in business and software engineering/architecture, as well as those rare visionary qualities that make a great entrepreneur. He is an accomplished executive and leader with a passion for fostering new business growth and building long-term partnerships. His recent work focuses on platform and devops, driving continuous improvement in the three Xs: Developer eXperience, Operational eXcellence, and soX compliance.

Updated on September 18, 2022

Comments

  • Bryan Agee
    Bryan Agee almost 2 years

    After reading this question, I was a little confused; it sounds like some daemon reacting by rebooting a system. Is that right? Is it a common occurrence in embedded *nixes?

    • Gilles 'SO- stop being evil'
      Gilles 'SO- stop being evil' almost 13 years
      Not just embedded, also servers (most server motherboards, and some high-end PC motherboards, have this feature). See Watchdog timer on Wikipedia.