Lines Matching refs:__kmp_thread_pool
3613 // Print out __kmp_thread_pool and __kmp_team_pool.
3617 CCAST(kmp_info_t *, __kmp_thread_pool));
4180 // We canot put root thread to __kmp_thread_pool, so we have to reap it
4439 if (__kmp_thread_pool && !KMP_HIDDEN_HELPER_TEAM(team)) {
4440 new_thr = CCAST(kmp_info_t *, __kmp_thread_pool);
4441 __kmp_thread_pool = (volatile kmp_info_t *)new_thr->th.th_next_pool;
5867 // Now, we always keep the free list (__kmp_thread_pool) sorted by gtid.
5948 KMP_DEBUG_ASSERT(__kmp_thread_pool != NULL);
5956 // __kmp_thread_pool itself.
5962 scan = CCAST(kmp_info_t **, &__kmp_thread_pool);
6386 while (__kmp_thread_pool != NULL) { // Loop thru all the thread in the pool.
6388 kmp_info_t *thread = CCAST(kmp_info_t *, __kmp_thread_pool);
6389 __kmp_thread_pool = thread->th.th_next_pool;
7303 KMP_DEBUG_ASSERT(__kmp_thread_pool == NULL);
7306 __kmp_thread_pool = NULL;