Review fixes.

This commit is contained in:
Maksim Andrianov 2019-01-29 17:22:34 +03:00 committed by mpimenov
parent c2184f60b4
commit 8e8ab8cbb3
3 changed files with 4 additions and 3 deletions

View file

@ -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()
{
{

View file

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

View file

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