X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3d5930b5ea5cd28d97ca9df147cd48bc51061480..9330ded5ddbf86a22dbd90c6ef0f3ed2f5f211b0:/include/wx/thread.h diff --git a/include/wx/thread.h b/include/wx/thread.h index 9e07b4e821..0b237cb4f2 100644 --- a/include/wx/thread.h +++ b/include/wx/thread.h @@ -633,11 +633,10 @@ class WXDLLIMPEXP_BASE wxThreadHelper private: void KillThread() { - // If detached thread is about to finish, it will set - // m_thread to NULL so don't delete it then - // But if KillThread is called before detached thread - // sets it to NULL, then the thread object still - // exists and can be killed + // If wxThreadHelperThread is detached and is about to finish, it will + // set m_thread to NULL so don't delete it then. + // But if KillThread is called before wxThreadHelperThread (in detached mode) + // sets it to NULL, then the thread object still exists and can be killed wxCriticalSectionLocker locker(m_critSection); if ( m_thread )