1
1

Fix a problem noted by Tim Campbell: the type of the first parameter

to the F90 binding for MPI_INITIALIZED was wrong (should have been
logical, not integer).

Fixes trac:782.

This commit was SVN r13170.

The following Trac tickets were found above:
  Ticket 782 --> https://svn.open-mpi.org/trac/ompi/ticket/782
Этот коммит содержится в:
Jeff Squyres 2007-01-17 22:44:47 +00:00
родитель fe08f5c675
Коммит 53c4bcccd5
2 изменённых файлов: 5 добавлений и 2 удалений

3
NEWS
Просмотреть файл

@ -41,6 +41,9 @@ Trunk (not on release branches yet)
1.2 1.2
--- ---
- Fixed the type of the first parameter to the MPI F90 binding for
MPI_INITIALIZED. Thanks to Tim Campbell for pointing out the
problem.
- Fix a bunch of places in the Fortran MPI bindings where MPI_Fint was - Fix a bunch of places in the Fortran MPI bindings where MPI_Fint was
mistakenly being used instead of MPI_Aint. mistakenly being used instead of MPI_Aint.
- Fixes for endian handling in MPI process startup. - Fixes for endian handling in MPI process startup.

Просмотреть файл

@ -5,7 +5,7 @@
# Corporation. All rights reserved. # Corporation. All rights reserved.
# Copyright (c) 2004-2006 The Regents of the University of California. # Copyright (c) 2004-2006 The Regents of the University of California.
# All rights reserved. # All rights reserved.
# Copyright (c) 2006 Cisco Systems, Inc. All rights reserved. # Copyright (c) 2006-2007 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$ # $COPYRIGHT$
# #
# Additional copyrights may follow # Additional copyrights may follow
@ -5518,7 +5518,7 @@ output_160() {
cat <<EOF cat <<EOF
subroutine ${procedure}(flag, ierr) subroutine ${procedure}(flag, ierr)
integer, intent(out) :: flag logical, intent(out) :: flag
integer, intent(out) :: ierr integer, intent(out) :: ierr
end subroutine ${procedure} end subroutine ${procedure}