This commit was generated by cvs2svn to compensate for changes in r171831,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
Alexander Kabaev 2007-08-14 02:52:47 +00:00
commit 2bdb3bd910
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171832
9 changed files with 54 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2007-07-19 Release Manager
* GCC 4.2.1 released.
2007-05-13 Release Manager
* GCC 4.2.0 released.

View File

@ -1,3 +1,7 @@
2007-07-19 Release Manager
* GCC 4.2.1 released.
2007-05-13 Release Manager
* GCC 4.2.0 released.

View File

@ -1,3 +1,7 @@
2007-07-19 Release Manager
* GCC 4.2.1 released.
2007-05-13 Release Manager
* GCC 4.2.0 released.

View File

@ -1,3 +1,26 @@
2007-07-19 Release Manager
* GCC 4.2.1 released.
2007-07-02 Jakub Jelinek <jakub@redhat.com>
PR libgomp/32468
* sections.c (GOMP_parallel_sections_start): Only decrease
number of threads to COUNT if dyn_var is true.
* testsuite/libgomp.c/pr32468.c: New test.
2007-07-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
PR libgomp/26308
* config/posix/lock.c (_XOPEN_SOURCE): Don't define on Tru64 UNIX.
2007-06-21 Jakub Jelinek <jakub@redhat.com>
PR middle-end/32362
* testsuite/libgomp.c/pr32362-1.c: New test.
* testsuite/libgomp.c/pr32362-2.c: New test.
* testsuite/libgomp.c/pr32362-3.c: New test.
2007-05-13 Release Manager
* GCC 4.2.0 released.

View File

@ -33,8 +33,12 @@
to do better and streamline the locking as well as reduce the size
of the types exported. */
/* We need Unix98 extensions to get recursive locks. */
/* We need Unix98 extensions to get recursive locks. On Tru64 UNIX V4.0F,
the declarations are available without _XOPEN_SOURCE, which actually
breaks compilation. */
#ifndef __osf__
#define _XOPEN_SOURCE 500
#endif
#include "libgomp.h"

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2005 Free Software Foundation, Inc.
/* Copyright (C) 2005, 2007 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU OpenMP Library (libgomp).
@ -106,7 +106,7 @@ GOMP_parallel_sections_start (void (*fn) (void *), void *data,
struct gomp_work_share *ws;
num_threads = gomp_resolve_num_threads (num_threads);
if (num_threads > count)
if (gomp_dyn_var && num_threads > count)
num_threads = count;
ws = gomp_new_work_share (false, num_threads);

View File

@ -1,3 +1,7 @@
2007-07-19 Release Manager
* GCC 4.2.1 released.
2007-05-13 Release Manager
* GCC 4.2.0 released.

View File

@ -1,3 +1,7 @@
2007-07-19 Release Manager
* GCC 4.2.1 released.
2007-05-13 Release Manager
* GCC 4.2.0 released.

View File

@ -1,3 +1,7 @@
2007-07-19 Release Manager
* GCC 4.2.1 released.
2007-05-13 Release Manager
* GCC 4.2.0 released.