Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'base/worker_thread.hpp')
-rw-r--r--base/worker_thread.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/worker_thread.hpp b/base/worker_thread.hpp
index 9b14b9f162..a0197e2158 100644
--- a/base/worker_thread.hpp
+++ b/base/worker_thread.hpp
@@ -15,8 +15,8 @@ namespace base
{
// This class represents a simple worker thread with a queue of tasks.
//
-// *NOTE* This class IS thread-safe, but it must be destroyed on the
-// same thread it was created.
+// *NOTE* This class IS NOT thread-safe, it must be destroyed on the
+// same thread it was created, but Push* methods are thread-safe.
class WorkerThread : public TaskLoop
{
public: