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
Этот коммит содержится в:
родитель
fe08f5c675
Коммит
53c4bcccd5
3
NEWS
3
NEWS
@ -41,6 +41,9 @@ Trunk (not on release branches yet)
|
||||
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
|
||||
mistakenly being used instead of MPI_Aint.
|
||||
- Fixes for endian handling in MPI process startup.
|
||||
|
@ -5,7 +5,7 @@
|
||||
# Corporation. All rights reserved.
|
||||
# Copyright (c) 2004-2006 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
# Copyright (c) 2006 Cisco Systems, Inc. All rights reserved.
|
||||
# Copyright (c) 2006-2007 Cisco Systems, Inc. All rights reserved.
|
||||
# $COPYRIGHT$
|
||||
#
|
||||
# Additional copyrights may follow
|
||||
@ -5518,7 +5518,7 @@ output_160() {
|
||||
cat <<EOF
|
||||
|
||||
subroutine ${procedure}(flag, ierr)
|
||||
integer, intent(out) :: flag
|
||||
logical, intent(out) :: flag
|
||||
integer, intent(out) :: ierr
|
||||
end subroutine ${procedure}
|
||||
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user