Commit aeb67adb authored by Dominik Charousset's avatar Dominik Charousset

Integrate review feedback

parent 5d4ffa97
......@@ -33,7 +33,8 @@ public:
struct node {
virtual ~node();
node* next = nullptr;
// Returns false to signal to the thread pool that it should shut down.
// Called by the private thread pool to stop the node. Regular nodes should
// return true. Returning false signals the thread pool to shut down.
virtual bool stop() = 0;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment