| 312 | } |
| 313 | |
| 314 | int NumberOfProcessorGroups() { |
| 315 | __TBB_ASSERT( hardware_concurrency_info == initialization_complete, "NumberOfProcessorGroups is used before AvailableHwConcurrency" ); |
| 316 | return ProcessorGroupInfo::NumGroups; |
| 317 | } |
| 318 | |
| 319 | // Offset for the slot reserved for the first master thread |
| 320 | #define HoleAdjusted(procIdx, grpIdx) (procIdx + (holeIdx <= grpIdx)) |
nothing calls this directly
no outgoing calls
no test coverage detected