| 139 | }; |
| 140 | |
| 141 | void init_condvar_module() |
| 142 | { |
| 143 | __TBB_ASSERT( (uintptr_t)__TBB_init_condvar==(uintptr_t)&init_condvar_using_event, NULL ); |
| 144 | if( dynamic_link( "Kernel32.dll", CondVarLinkTable, 4 ) ) |
| 145 | __TBB_destroy_condvar = (void (WINAPI *)(PCONDITION_VARIABLE))&destroy_condvar_noop; |
| 146 | } |
| 147 | #endif /* _WIN32||_WIN64 */ |
| 148 | |
| 149 | } // namespace internal |
nothing calls this directly
no test coverage detected