We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd7b286 commit c18129dCopy full SHA for c18129d
2 files changed
README.md
@@ -858,7 +858,7 @@ Cpp-Taskflow is licensed under the [MIT License](./LICENSE).
858
[NSF]: https://www.nsf.gov/
859
[UIUC]: https://illinois.edu/
860
[CSL]: https://csl.illinois.edu/
861
-[FAQ]: ./doc/faq.md
+[FAQ]: ./docs/faq.md
862
[wiki]: https://cpp-taskflow.github.io/cpp-taskflow/index.html
863
[PayMe]: https://www.paypal.me/twhuang/10
864
[C++17]: https://en.wikipedia.org/wiki/C%2B%2B17
taskflow/threadpool/workstealing_threadpool.hpp
@@ -516,6 +516,7 @@ void WorkStealingThreadpool<Closure>::_balance_load(unsigned me) {
516
Worker* w = _idlers.back();
517
_idlers.pop_back();
518
w->ready = true;
519
+ w->cache = _workers[me].queue.pop();
520
w->cv.notify_one();
521
w->last_victim = me;
522
}
0 commit comments