
The attribute and conversion callback subroutine interfaces are used by all 3 modules, and belong in the fortran/base directory, not the directory of a specific module. Also clean up some comments. cmr=v1.7.4:ticket=4162 This commit was SVN r30378. The following Trac tickets were found above: Ticket 4162 --> https://svn.open-mpi.org/trac/ompi/ticket/4162
30 строки
994 B
C
30 строки
994 B
C
!
|
|
! Copyright (c) 2006-2012 Cisco Systems, Inc. All rights reserved.
|
|
! $COPYRIGHT$
|
|
!
|
|
! Additional copyrights may follow
|
|
!
|
|
! $HEADER$
|
|
!
|
|
|
|
! Note about these declarations: these are "external" functions in
|
|
! mpif-common.h. However, if we don't declare them here, compilers will add
|
|
! them to the "mpi" module namespace, and result in linker errors if MPI
|
|
! F90 applications try to use them. because the implementations of
|
|
! these functions are not in the MPI module namespace -- they're the F77
|
|
! functions.
|
|
|
|
interface
|
|
|
|
subroutine mpi_conversion_fn_null(userbuf, datatype, count, filebuf, &
|
|
position, extra_state, ierror)
|
|
include 'mpif-config.h'
|
|
character(len=*), intent(in) :: filebuf
|
|
character(len=*), intent(out) :: userbuf
|
|
integer, intent(in) :: datatype, count, ierror
|
|
integer(kind=MPI_OFFSET_KIND), intent(in) :: position
|
|
integer(kind=MPI_ADDRESS_KIND), intent(in) :: extra_state
|
|
end subroutine mpi_conversion_fn_null
|
|
|
|
end interface
|