diff options
author | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-26 16:22:18 +0000 |
---|---|---|
committer | jakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-07-26 16:22:18 +0000 |
commit | 6e67728e87cc3fdb97f600ea25318e48a64ea899 (patch) | |
tree | ec93809cdf0c4f6c5a4567e07ea854298ef4dd7f /libgomp | |
parent | 095a3ce9a2b69eeaae28ea51c1cbbd1322ee291d (diff) | |
download | gcc-6e67728e87cc3fdb97f600ea25318e48a64ea899.tar.gz |
* libgomp.texi: Add function keyword to a couple of Fortran
interfaces, use integer instead of int for Fortran.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@162540 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp')
-rw-r--r-- | libgomp/ChangeLog | 5 | ||||
-rw-r--r-- | libgomp/libgomp.texi | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index f98b9647ed8..03cf70bc0db 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2010-07-26 Jakub Jelinek <jakub@redhat.com> + + * libgomp.texi: Add function keyword to a couple of Fortran + interfaces, use integer instead of int for Fortran. + 2010-07-26 Aldy Hernandez <aldyh@redhat.com> * libgomp.texi: Fix spelling and pasto problems throughout. diff --git a/libgomp/libgomp.texi b/libgomp/libgomp.texi index 3435819dbd6..20ffd672542 100644 --- a/libgomp/libgomp.texi +++ b/libgomp/libgomp.texi @@ -192,7 +192,7 @@ which enclose the calling call. @item @emph{Fortran}: @multitable @columnfractions .20 .80 -@item @emph{Interface}: @tab @code{integer omp_get_active_level()} +@item @emph{Interface}: @tab @code{integer function omp_get_active_level()} @end multitable @item @emph{See also}: @@ -220,7 +220,7 @@ zero to @code{omp_get_level} -1 is returned; if @var{level} is @item @emph{Fortran}: @multitable @columnfractions .20 .80 -@item @emph{Interface}: @tab @code{integer omp_get_ancestor_thread_num(level)} +@item @emph{Interface}: @tab @code{integer function omp_get_ancestor_thread_num(level)} @item @tab @code{integer level} @end multitable @@ -279,7 +279,7 @@ which enclose the calling call. @item @emph{Fortran}: @multitable @columnfractions .20 .80 -@item @emph{Interface}: @tab @code{integer omp_level()} +@item @emph{Interface}: @tab @code{integer function omp_level()} @end multitable @item @emph{See also}: @@ -304,7 +304,7 @@ This function obtains the maximum allowed number of nested, active parallel regi @item @emph{Fortran}: @multitable @columnfractions .20 .80 -@item @emph{Interface}: @tab @code{int omp_get_max_active_levels()} +@item @emph{Interface}: @tab @code{integer function omp_get_max_active_levels()} @end multitable @item @emph{See also}: |