forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
c2184f60b4
commit
8e8ab8cbb3
3 changed files with 4 additions and 3 deletions
|
@ -86,7 +86,8 @@ public:
|
|||
|
||||
// Stop a ThreadPool.
|
||||
// Removes the tasks that are not yet started from the queue.
|
||||
// This function will not block until all runnables have been completed.
|
||||
// Unlike the destructor, this function does not wait for all runnables to complete:
|
||||
// the tasks will stop as soon as possible.
|
||||
void Stop()
|
||||
{
|
||||
{
|
||||
|
|
|
@ -18,7 +18,7 @@ namespace thread_pool
|
|||
{
|
||||
namespace delayed
|
||||
{
|
||||
// This class represents a simple worker thread with a queue of tasks.
|
||||
// This class represents a simple thread pool with a queue of tasks.
|
||||
//
|
||||
// *NOTE* This class IS NOT thread-safe, it must be destroyed on the
|
||||
// same thread it was created, but Push* methods are thread-safe.
|
||||
|
|
|
@ -28,7 +28,7 @@ private:
|
|||
ThreadContainer & m_threads;
|
||||
};
|
||||
|
||||
// This class is needed in ThreadPool to store std::packaged_task<> objects.
|
||||
// This class can be used in thread pools to store std::packaged_task<> objects.
|
||||
// std::packaged_task<> isn’t copyable so we have to use std::move().
|
||||
// This idea is borrowed from the book C++ Concurrency in action by Anthony Williams (Chapter 9).
|
||||
class FunctionWrapper
|
||||
|
|
Loading…
Add table
Reference in a new issue