1
1

Merge pull request #6122 from ggouaillardet/topic/MPI_XYZ_FN

mpi/c: add back (some more) deprecated subroutines
Этот коммит содержится в:
Gilles Gouaillardet 2018-11-27 14:44:28 +09:00 коммит произвёл GitHub
родитель 7be8a075ed 5a968306d6
Коммит cd199d0e12
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -9,6 +9,8 @@
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2018 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -131,11 +133,6 @@ int OMPI_C_MPI_COMM_DUP_FN( MPI_Comm comm, int comm_keyval, void* extra_state,
return MPI_SUCCESS;
}
#if !defined(OMPI_ENABLE_MPI1_COMPAT)
#error "Need to delete the code below now that the removed functions are no longer shipping"
#elif OMPI_ENABLE_MPI1_COMPAT
int OMPI_C_MPI_NULL_DELETE_FN( MPI_Comm comm, int comm_keyval,
void* attribute_val_out,
void* extra_state )
@ -159,4 +156,3 @@ int OMPI_C_MPI_DUP_FN( MPI_Comm comm, int comm_keyval, void* extra_state,
*(void**)attribute_val_out = attribute_val_in;
return MPI_SUCCESS;
}
#endif