Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the master branch, built from commit 064f557086.
PrevUpHomeNext

Function template wait_for_all

boost::compute::wait_for_all

Synopsis

// In header: <boost/compute/async/wait.hpp>


template<class... Events> void wait_for_all(Events &&... events);

Description

Blocks until all events have completed. Events can either be event objects or future<T> objects.

See Also:

event, wait_list


PrevUpHomeNext