diff --git a/include/wx/private/webrequest_curl.h b/include/wx/private/webrequest_curl.h index b16481bb1d..93990e4e5c 100644 --- a/include/wx/private/webrequest_curl.h +++ b/include/wx/private/webrequest_curl.h @@ -142,6 +142,9 @@ protected: private: CURLM* m_handle; + + // Mutex and condition are used together to signal to the worker thread to + // wake up and mutex is also used to protected m_shuttingDown field. wxMutex m_mutex; wxCondition m_condition; bool m_shuttingDown;