What does this message means, is there an API to « respond » to Microsoft Windows status queries ?
I'm looking for a technical answer. Thanks :)
What does this message means, is there an API to « respond » to Microsoft Windows status queries ?
I'm looking for a technical answer. Thanks :)
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.
What this means is that the program is failing to service its message queue. From the documentation:
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.