Lines Matching defs:team
89 struct gomp_team *team = thr->ts.team;
92 team->work_share_cancelled = 0;
93 if (__builtin_expect (team->task_count, 0))
153 struct gomp_team *team = thr->ts.team;
156 team->work_share_cancelled = 0;
157 if (__builtin_expect (team->task_count, 0))
200 gomp_team_barrier_cancel (struct gomp_team *team)
202 gomp_mutex_lock (&team->task_lock);
203 if (team->barrier.generation & BAR_CANCELLED)
205 gomp_mutex_unlock (&team->task_lock);
208 team->barrier.generation |= BAR_CANCELLED;
209 gomp_mutex_unlock (&team->task_lock);
210 futex_wake ((int *) &team->barrier.generation, INT_MAX);