| 225 | |
| 226 | #if __USE_TBB_ATOMICS |
| 227 | static void atomic_once ( void (*func) (void), tbb::atomic< tbb::internal::do_once_state > &once_state ) { |
| 228 | tbb::internal::atomic_do_once( func, once_state ); |
| 229 | } |
| 230 | #define ATOMIC_ONCE_DECL( var ) tbb::atomic< tbb::internal::do_once_state > var |
| 231 | #else |
| 232 | static void atomic_once ( void (*func) (), pthread_once_t &once_state ) { |
no test coverage detected