diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-07-16 17:35:26 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2008-07-16 17:35:26 +0200 |
commit | 4db72361fe9c5fc148b529b6ba9af814150379d3 (patch) | |
tree | 0c0cc5fdd1c2567c317c9bba3233e37ed0b1f8d2 /libgomp/team.c | |
parent | 9a8d7941eb2e948110501a387505d657e64a1f91 (diff) | |
download | gcc-4db72361fe9c5fc148b529b6ba9af814150379d3.tar.gz |
team.c (gomp_team_end): Free team immediately if it has just one thread.
* team.c (gomp_team_end): Free team immediately if it has
just one thread.
From-SVN: r137886
Diffstat (limited to 'libgomp/team.c')
-rw-r--r-- | libgomp/team.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libgomp/team.c b/libgomp/team.c index 18b02e72f90..224236c6604 100644 --- a/libgomp/team.c +++ b/libgomp/team.c @@ -498,7 +498,8 @@ gomp_team_end (void) gomp_mutex_destroy (&team->work_share_list_free_lock); #endif - if (__builtin_expect (thr->ts.team != NULL, 0)) + if (__builtin_expect (thr->ts.team != NULL, 0) + || __builtin_expect (team->nthreads == 1, 0)) free_team (team); else { |