Hang (computing) Article Index for
Hang
Website Links For
Hang
 

Information About

Hang (computing)




In Computing , either a single Computer Program or the whole system may "hang" or become unresponsive to Keyboard and Mouse Input . The term "hang" is synonymous with "freeze," the more commonly used term. In a hang, the window affected or the whole computer screen becomes static, the latter case including the mouse cursor. Contrast with Crash , where a program exits abnormally with an error message.
When no other input works, the Power cycle must be restarted by an on/off or reset button.

The cause of a hang is usually that the programmer has incorrect termination conditions for a Loop , or, in a Co-operative Multitasking Operating System , forgetting to yield to other tasks.

Usually, in systems with a modern Operating System , the user is able to terminate the programs running (for instance, with the Kill command, or through the "end task" button on the task list in recent versions of Microsoft Windows ), and, if they wish, restart it in the hope that the anomalous condition that caused the hang does not recur. Older systems, such as those using MS-DOS or Microsoft Windows 3.1 , often needed to be Completely Restarted in the event of a hang.

Pre-emptive Multitasking Operating Systems, such as Microsoft Windows 2000 / XP , Apple Computer 's Mac OS X and Linux crash less often as the multi-tasking system is not affected by non-terminating loops and further does not require tasks to yield control to the operating system.

A Watchdog Timer can Reboot the computer in events of a hang.


SEE ALSO