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 an old version of Boost. Click here to view this page for the latest version.
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