summaryrefslogtreecommitdiff
path: root/libcxx/include/__algorithm/pstl_backends/cpu_backend.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/include/__algorithm/pstl_backends/cpu_backend.h')
-rw-r--r--libcxx/include/__algorithm/pstl_backends/cpu_backend.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libcxx/include/__algorithm/pstl_backends/cpu_backend.h b/libcxx/include/__algorithm/pstl_backends/cpu_backend.h
index b12d45462546..98e6eb76df4c 100644
--- a/libcxx/include/__algorithm/pstl_backends/cpu_backend.h
+++ b/libcxx/include/__algorithm/pstl_backends/cpu_backend.h
@@ -17,9 +17,15 @@
template <class _RandomAccessIterator, class _Functor>
void __parallel_for(_RandomAccessIterator __first, _RandomAccessIterator __last, _Functor __func);
+ // Cancel the execution of other jobs - they aren't needed anymore
+ void __cancel_execution();
+
TODO: Document the parallel backend
*/
+#include <__algorithm/pstl_backends/cpu_backends/any_of.h>
+#include <__algorithm/pstl_backends/cpu_backends/fill.h>
+#include <__algorithm/pstl_backends/cpu_backends/find_if.h>
#include <__algorithm/pstl_backends/cpu_backends/for_each.h>
#endif // _LIBCPP___ALGORITHM_PSTL_BACKENDS_CPU_BACKEND_H