| 648 | intptr_t market::workers_task_node_count() { |
| 649 | intptr_t result = 0; |
| 650 | ForEachArena(a) { |
| 651 | result += a.workers_task_node_count(); |
| 652 | } EndForEach(); |
| 653 | return result; |
| 654 | } |
| 655 | #endif /* __TBB_COUNT_TASK_NODES */ |
nothing calls this directly
no test coverage detected