Viewing a single comment thread. View all comments

Fracture_98 t1_jbfjpq4 wrote

It's very common. A standard feature of inaccessible computer equipment is called a "Watchdog Timer".

The system has a hardware counter that turns the computer off and on again if the timer gets too high. You then write your software so that it resets the timer at regular intervals. If your software crashes, it won't reset the timer and the computer will restart.

It's a bit more complicated than that, but it's really effective.

23

Nop277 t1_jblantv wrote

This is also how I stay awake at work.

2