| 276 | to serious performance regression with ICC. So keep it out-of-line. |
| 277 | */ |
| 278 | extern "C" intptr_t __TBB_machine_lockbyte( volatile unsigned char& flag ) { |
| 279 | tbb::internal::atomic_backoff backoff; |
| 280 | while( !__TBB_TryLockByte(flag) ) backoff.pause(); |
| 281 | return 0; |
| 282 | } |
| 283 | #endif |
nothing calls this directly
no test coverage detected