#include <synchro.h>
Public Types | |
typedef void | iterator |
Public Member Functions | |
thread_array (size_t) | |
template<class ThrMain> | |
thread_tree< void, ThrMain * > | tree (ThrMain *ptrThrMain) |
Returns a thread tree where only the head thread is a real one. | |
template<class ThrMain> | |
thread_tree< void, ThrMain > | tree (const ThrMain &refThrMain) |
Returns a thread tree where only the head thread is a real one. | |
thread_tree< void, void > | tree (void) |
This creates a thread_tree where the main thread is void. |
typedef void rpa::thread_array< void >::iterator |
rpa::thread_array< void >::thread_array | ( | size_t | ) | [inline] |
thread_tree< void, void > rpa::thread_array< void >::tree | ( | void | ) | [inline] |
This creates a thread_tree where the main thread is void.
thread_tree< void, ThrMain > rpa::thread_array< void >::tree | ( | const ThrMain & | refThrMain | ) | [inline] |
Returns a thread tree where only the head thread is a real one.
The functor which uses it will simply run in a single thread.
thread_tree< void, ThrMain * > rpa::thread_array< void >::tree | ( | ThrMain * | ptrThrMain | ) | [inline] |
Returns a thread tree where only the head thread is a real one.
The functor which uses it will simply run in a single thread.