vote up 6 vote down star

What is it exactly that "triggers" Windows to mark a process as Not responding in the Task Manager and Resource Monitor?

flag

2  
if (OS == Vista) { DoNotRespond(); } – James Atkinson Nov 6 at 23:54
lol. +1 for the comment, while I write this on Vista. However, it probably was coded as if (OS = VISTA) {DoNotRespond();} :) – Dan McG Nov 7 at 0:12

4 Answers

vote up 7 vote down

The API behind this is IsHungAppWindow. Basically, if the application has not pumped a message within 5 seconds it can be marked as not responding.

link|flag
vote up 5 vote down

If a process does not collect Windows messages from its queue using the GetMessage function or something related, it will be tagged as "not responding" -- because it is not responding to user interface events.

This does not necessarily mean that the application is actually hung -- it may just be too busy to pay attention to the user.

link|flag
vote up 1 vote down

Basically, it get's it self into a state where the program does not return to a point where it can process it's message queue.

Usually, this is either a loop that doesn't end or a blocking operation, such as reading from a socket, etc.

link|flag
Norton Antivirus frequently grabs my browser or my thunderbird email client and locks it into a not-responding. Its very annoying. – djangofan Nov 6 at 23:56
The amount of issues I have encountered that were caused by Norton products has given me psychological scarring – Dan McG Nov 7 at 0:10
thats why you use the new microsoft product or eset nod32 instead ;) – Svish Nov 7 at 1:52
vote up 1 vote down

The fact that they don't empty their message queue, by polling it GetMessge API and the like.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.