diff options
author | Benoit Steiner <benoit.steiner.goog@gmail.com> | 2016-04-19 17:59:58 -0700 |
---|---|---|
committer | Benoit Steiner <benoit.steiner.goog@gmail.com> | 2016-04-19 17:59:58 -0700 |
commit | c7c2054bb519ad01039560254f9dda8698cb0cd9 (patch) | |
tree | 36c96ef36753bae7778f5d8b85683e64560304ba /unsupported/Eigen/CXX11/ThreadPool | |
parent | 1d0238375d53e168eda40139979f8d128e72f4e8 (diff) |
Started to implement a portable way to yield.
Diffstat (limited to 'unsupported/Eigen/CXX11/ThreadPool')
-rw-r--r-- | unsupported/Eigen/CXX11/ThreadPool | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unsupported/Eigen/CXX11/ThreadPool b/unsupported/Eigen/CXX11/ThreadPool index 6cd057b4b..fe00a0b65 100644 --- a/unsupported/Eigen/CXX11/ThreadPool +++ b/unsupported/Eigen/CXX11/ThreadPool @@ -45,9 +45,10 @@ #include <functional> #include <memory> +#include "src/ThreadPool/ThreadLocal.h" +#include "src/ThreadPool/ThreadYield.h" #include "src/ThreadPool/EventCount.h" #include "src/ThreadPool/RunQueue.h" -#include "src/ThreadPool/ThreadLocal.h" #include "src/ThreadPool/ThreadPoolInterface.h" #include "src/ThreadPool/ThreadEnvironment.h" #include "src/ThreadPool/SimpleThreadPool.h" |