Home | History | Annotate | Download | only in gcn

Lines Matching defs:team

88       struct gomp_team *team = thr->ts.team;
91 team->work_share_cancelled = 0;
92 if (__builtin_expect (team->task_count, 0))
165 struct gomp_team *team = thr->ts.team;
168 team->work_share_cancelled = 0;
169 if (__builtin_expect (team->task_count, 0))
226 gomp_team_barrier_cancel (struct gomp_team *team)
228 gomp_mutex_lock (&team->task_lock);
229 if (team->barrier.generation & BAR_CANCELLED)
231 gomp_mutex_unlock (&team->task_lock);
234 team->barrier.generation |= BAR_CANCELLED;
235 gomp_mutex_unlock (&team->task_lock);
236 gomp_team_barrier_wake (&team->barrier, INT_MAX);