diff options
author | pfg <pfg@FreeBSD.org> | 2015-05-16 15:44:13 +0000 |
---|---|---|
committer | pfg <pfg@FreeBSD.org> | 2015-05-16 15:44:13 +0000 |
commit | c5245aadbbe5796d58c966d6d6209a110f78dbe1 (patch) | |
tree | b026710099072006d1fbb442261e609e70bf15ec /contrib/gcclibs/libgomp/omp_lib.h.in | |
parent | 0f07927a1e80c78fdd924b93496d912f723740da (diff) | |
download | FreeBSD-src-c5245aadbbe5796d58c966d6d6209a110f78dbe1.zip FreeBSD-src-c5245aadbbe5796d58c966d6d6209a110f78dbe1.tar.gz |
MFC r282115, r282152, r282201
MFV r282150
libgomp: Update to version 4.3.5.
bring initial BSD support from upstream.
This was not meant to be MFC'd at first but the original OMP support
for FreeBSD was in very poor shape. The effect of this change should
be minimal as all ports are already using the version of libgomp that
comes with the gcc ports. The local libgomp is planned to be disabled
for platforms that are not using older gcc by default so this version
of libgomp will not be shipped in tier-1 platform releases.
Discussed with: emaste
Diffstat (limited to 'contrib/gcclibs/libgomp/omp_lib.h.in')
-rw-r--r-- | contrib/gcclibs/libgomp/omp_lib.h.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/gcclibs/libgomp/omp_lib.h.in b/contrib/gcclibs/libgomp/omp_lib.h.in index 734f2f7..2376b23 100644 --- a/contrib/gcclibs/libgomp/omp_lib.h.in +++ b/contrib/gcclibs/libgomp/omp_lib.h.in @@ -38,16 +38,16 @@ external omp_set_num_threads external omp_get_dynamic, omp_get_nested - logical*4 omp_get_dynamic, omp_get_nested + logical(4) omp_get_dynamic, omp_get_nested external omp_test_lock, omp_in_parallel - logical*4 omp_test_lock, omp_in_parallel + logical(4) omp_test_lock, omp_in_parallel external omp_get_max_threads, omp_get_num_procs - integer*4 omp_get_max_threads, omp_get_num_procs + integer(4) omp_get_max_threads, omp_get_num_procs external omp_get_num_threads, omp_get_thread_num - integer*4 omp_get_num_threads, omp_get_thread_num + integer(4) omp_get_num_threads, omp_get_thread_num external omp_test_nest_lock - integer*4 omp_test_nest_lock + integer(4) omp_test_nest_lock external omp_get_wtick, omp_get_wtime double precision omp_get_wtick, omp_get_wtime |