1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- #ifndef __TBB_combinable_H
- #define __TBB_combinable_H
- #include "enumerable_thread_specific.h"
- #include "cache_aligned_allocator.h"
- namespace tbb {
- template <typename T>
- class combinable {
- private:
- typedef typename tbb::cache_aligned_allocator<T> my_alloc;
- typedef typename tbb::enumerable_thread_specific<T, my_alloc, ets_no_key> my_ets_type;
- my_ets_type my_ets;
-
- public:
- combinable() { }
- template <typename finit>
- combinable( finit _finit) : my_ets(_finit) { }
-
- ~combinable() {
- }
- combinable(const combinable& other) : my_ets(other.my_ets) { }
- combinable & operator=( const combinable & other) { my_ets = other.my_ets; return *this; }
- void clear() { my_ets.clear(); }
- T& local() { return my_ets.local(); }
- T& local(bool & exists) { return my_ets.local(exists); }
-
- template <typename combine_func_t>
- T combine(combine_func_t f_combine) { return my_ets.combine(f_combine); }
-
- template <typename combine_func_t>
- void combine_each(combine_func_t f_combine) { my_ets.combine_each(f_combine); }
- };
- }
- #endif
|