What does « program is not responding » mean?

3.3k Views Asked by At

What does this message means, is there an API to « respond » to Microsoft Windows status queries ?

I'm looking for a technical answer. Thanks :)

2

There are 2 best solutions below

3
On BEST ANSWER

What this means is that the program is failing to service its message queue. From the documentation:

If a top-level window stops responding to messages for more than several seconds, the system considers the window to be not responding. In this case, the system hides the window and replaces it with a ghost window that has the same Z order, location, size, and visual attributes. This allows the user to move it, resize it, or even close the application. However, these are the only actions available because the application is actually not responding. When in the debugger mode, the system does not generate a ghost window.

Typically this means that the main thread of the program is busy and is not calling GetMessage frequently enough. Long running tasks should be performed on a thread other than the main UI thread.

2
On

Windows applications interact with the operating system by receiving window messages. These messages are processed by the application in its main thread in a loop.

If an application fails to process its messages in time (several seconds are the margin there), its message queue fills up and Windows marks this application as "not responding", rendering its main window white-ish and the such.

Such behaviour is mostly caused by doing a lengthy operation on the same thread that processes the window messages. This thread is often referred to as the "main UI thread". If you do not do any explicit multi threading, it may well be the only thread of your application.