reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

projects/openmp/runtime/src/kmp.h
 3027 extern volatile kmp_info_t *__kmp_thread_pool;

References

projects/openmp/runtime/src/kmp_runtime.cpp
 4202   if (__kmp_thread_pool) {
 4203     new_thr = CCAST(kmp_info_t *, __kmp_thread_pool);
 4204     __kmp_thread_pool = (volatile kmp_info_t *)new_thr->th.th_next_pool;
 5616     scan = CCAST(kmp_info_t **, &__kmp_thread_pool);
 6020     while (__kmp_thread_pool != NULL) { // Loop thru all the thread in the pool.
 6022       kmp_info_t *thread = CCAST(kmp_info_t *, __kmp_thread_pool);
 6023       __kmp_thread_pool = thread->th.th_next_pool;
 6675   __kmp_thread_pool = NULL;
projects/openmp/runtime/src/kmp_tasking.cpp
 3405     for (thread = CCAST(kmp_info_t *, __kmp_thread_pool); thread != NULL;
projects/openmp/runtime/src/z_Linux_util.cpp
 1325   __kmp_thread_pool = NULL;