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

References

projects/openmp/runtime/src/kmp_runtime.cpp
 4046   TCW_SYNC_PTR(this_thr->th.th_team, team);
 4048   this_thr->th.th_info.ds.ds_tid = tid;
 4049   this_thr->th.th_set_nproc = 0;
 4053     this_thr->th.th_reap_state = KMP_NOT_SAFE_TO_REAP;
 4055     this_thr->th.th_reap_state = KMP_SAFE_TO_REAP;
 4056   this_thr->th.th_set_proc_bind = proc_bind_default;
 4058   this_thr->th.th_new_place = this_thr->th.th_current_place;
 4058   this_thr->th.th_new_place = this_thr->th.th_current_place;
 4060   this_thr->th.th_root = master->th.th_root;
 4063   this_thr->th.th_team_nproc = team->t.t_nproc;
 4064   this_thr->th.th_team_master = master;
 4065   this_thr->th.th_team_serialized = team->t.t_serialized;
 4066   TCW_PTR(this_thr->th.th_sleep_loc, NULL);
 4073   __kmp_init_implicit_task(this_thr->th.th_team_master->th.th_ident, this_thr,
 4073   __kmp_init_implicit_task(this_thr->th.th_team_master->th.th_ident, this_thr,
 4082   this_thr->th.th_dispatch = &team->t.t_dispatch[tid];
 4084   this_thr->th.th_local.this_construct = 0;
 4086   if (!this_thr->th.th_pri_common) {
 4087     this_thr->th.th_pri_common =
 4091           gtid, this_thr->th.th_pri_common, this_thr->th.th_pri_common + 1,
 4091           gtid, this_thr->th.th_pri_common, this_thr->th.th_pri_common + 1,
 4094     this_thr->th.th_pri_head = NULL;
 4097   if (this_thr != master && // Master's CG root is initialized elsewhere
 4098       this_thr->th.th_cg_roots != master->th.th_cg_roots) { // CG root not set
 4101     kmp_cg_root_t *tmp = this_thr->th.th_cg_roots;
 4112     this_thr->th.th_cg_roots = master->th.th_cg_roots;
 4114     this_thr->th.th_cg_roots->cg_nthreads++;
 4120     this_thr->th.th_current_task->td_icvs.thread_limit =
 4121         this_thr->th.th_cg_roots->cg_thread_limit;
 4126     volatile kmp_disp_t *dispatch = this_thr->th.th_dispatch;
 4164   this_thr->th.th_next_pool = NULL;
 4166   if (!this_thr->th.th_task_state_memo_stack) {
 4168     this_thr->th.th_task_state_memo_stack =
 4170     this_thr->th.th_task_state_top = 0;
 4171     this_thr->th.th_task_state_stack_sz = 4;
 4172     for (i = 0; i < this_thr->th.th_task_state_stack_sz;
 4174       this_thr->th.th_task_state_memo_stack[i] = 0;