Add a comment explaining mutex use in wxWebSessionCURL

No real changes.
This commit is contained in:
Vadim Zeitlin
2021-01-11 01:11:44 +01:00
parent 0588b0e7ce
commit 1d52f1cbb5

View File

@@ -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;