|
unsigned int | Threads::n_existing_threads () |
|
unsigned int | Threads::this_thread_id () |
|
template<typename ForwardIterator > |
std::vector< std::pair< ForwardIterator, ForwardIterator > > | Threads::split_range (const ForwardIterator &begin, const ForwardIterator &end, const unsigned int n_intervals) |
|
std::vector< std::pair< unsigned int, unsigned int > > | Threads::split_interval (const unsigned int begin, const unsigned int end, const unsigned int n_intervals) |
|
template<typename RT > |
void | Threads::internal::call (const std::function< RT()> &function, internal::return_value< RT > &ret_val) |
|
void | Threads::internal::call (const std::function< void()> &function, internal::return_value< void > &) |
|
template<typename RT > |
Thread< RT > | Threads::new_thread (const std::function< RT()> &function) |
|
template<typename FunctionObjectType > |
auto | Threads::new_thread (FunctionObjectType function_object) -> Thread< decltype(function_object())> |
|
template<typename RT , typename... Args> |
Thread< RT > | Threads::new_thread (RT(*fun_ptr)(Args...), typename identity< Args >::type... args) |
|
template<typename RT , typename C , typename... Args> |
Thread< RT > | Threads::new_thread (RT(C::*fun_ptr)(Args...), typename identity< C >::type &c, typename identity< Args >::type... args) |
|
template<typename RT , typename C , typename... Args> |
Thread< RT > | Threads::new_thread (RT(C::*fun_ptr)(Args...) const, typename identity< const C >::type &c, typename identity< Args >::type... args) |
|
template<typename RT > |
Task< RT > | Threads::new_task (const std::function< RT()> &function) |
|
template<typename FunctionObjectType > |
auto | Threads::new_task (FunctionObjectType function_object) -> Task< decltype(function_object())> |
|
template<typename RT , typename... Args> |
Task< RT > | Threads::new_task (RT(*fun_ptr)(Args...), typename identity< Args >::type... args) |
|
template<typename RT , typename C , typename... Args> |
Task< RT > | Threads::new_task (RT(C::*fun_ptr)(Args...), typename identity< C >::type &c, typename identity< Args >::type... args) |
|
template<typename RT , typename C , typename... Args> |
Task< RT > | Threads::new_task (RT(C::*fun_ptr)(Args...) const, typename identity< const C >::type &c, typename identity< Args >::type... args) |
|