diff options
author | Christian Biesinger <cbiesinger@google.com> | 2019-10-08 17:25:26 -0500 |
---|---|---|
committer | Christian Biesinger <cbiesinger@google.com> | 2019-10-08 17:36:15 -0500 |
commit | d13d16c4d8e976ebd00353e04ca8a761b8850a11 (patch) | |
tree | c5934e66287c895b75dddf3a29945797f1160193 /gdb/gdbsupport/parallel-for.h | |
parent | 52300df201ed1a35eb15b2bc5eb441a1b7eec393 (diff) | |
download | binutils-users/cbiesinger/threadpool.zip binutils-users/cbiesinger/threadpool.tar.gz binutils-users/cbiesinger/threadpool.tar.bz2 |
Switch to futuresusers/cbiesinger/threadpool
Diffstat (limited to 'gdb/gdbsupport/parallel-for.h')
-rw-r--r-- | gdb/gdbsupport/parallel-for.h | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/gdb/gdbsupport/parallel-for.h b/gdb/gdbsupport/parallel-for.h index 6f4235d..11af33d 100644 --- a/gdb/gdbsupport/parallel-for.h +++ b/gdb/gdbsupport/parallel-for.h @@ -68,9 +68,7 @@ parallel_for_each (RandomIt first, RandomIt last, RangeFunction callback) parallel_for_pool.start (n_threads); } - std::mutex mtx; - std::condition_variable cv; - int num_finished = 0; + std::future<void> futures[n_threads]; size_t n_elements = last - first; if (n_threads > 1 && 2 * n_threads <= n_elements) @@ -79,12 +77,9 @@ parallel_for_each (RandomIt first, RandomIt last, RangeFunction callback) for (int i = 0; i < n_threads; ++i) { RandomIt end = first + elts_per_thread; - parallel_for_pool.post_task ([&, first, end] () { - callback (first, end); - std::unique_lock<std::mutex> lck (mtx); - num_finished++; - cv.notify_all (); - }); + futures[i] = parallel_for_pool.post_task ([&, first, end] () { + callback (first, end); + }); first = end; } } @@ -94,15 +89,10 @@ parallel_for_each (RandomIt first, RandomIt last, RangeFunction callback) /* Process all the remaining elements in the main thread. */ callback (first, last); - if (n_threads) - { - for (;;) { - std::unique_lock<std::mutex> lck (mtx); - if (num_finished == n_threads) - break; - cv.wait (lck); - } - } +#ifdef CXX_STD_THREAD + for (size_t i = 0; i < n_threads; ++i) + futures[i].wait (); +#endif /* CXX_STD_THREAD */ } } |