1
1

At Josh's request, make example MPI extension use the init/fini so that

the feature is actually documented.

This commit was SVN r24686.
Этот коммит содержится в:
Brian Barrett 2011-05-05 18:31:07 +00:00
родитель 8376e0e507
Коммит be8a126600
3 изменённых файлов: 31 добавлений и 1 удалений

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

@ -12,10 +12,37 @@
#include <stdio.h>
#include "ompi/mpi/c/bindings.h"
#include "ompi/mpiext/mpiext.h"
#include "ompi/mpiext/example/mpiext_example_c.h"
static const char FUNC_NAME[] = "OMPI_Progress";
/*
* The init/fini functions and the component struct are not required,
* but optional. If an extension would like to have init/fini, in
* addition to providing the hooks below, adding the line in
* configure.m4 (documented in example's configure.m4) is also
* required.
*/
static int
example_init(void)
{
printf("example mpiext init\n");
return OMPI_SUCCESS;
}
static int
example_fini(void)
{
printf("example mpiext fini\n");
return OMPI_SUCCESS;
}
ompi_mpiext_component_t ompi_mpiext_example = {
example_init,
example_fini
};
int OMPI_Progress(char * stmt)
{

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

@ -15,3 +15,6 @@ AC_DEFUN([OMPI_MPIEXT_example_CONFIG],[
AC_CONFIG_FILES([ompi/mpiext/example/Makefile])
$1
])
# only need to set this if the component needs init/finalize hooks
AC_DEFUN([OMPI_MPIEXT_example_NEED_INIT], [1])

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

@ -928,7 +928,7 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided)
the user's code. Setup the connections between procs and warm
them up with simple sends, if requested */
if (OMPI_SUCCESS != ompi_mpiext_init()) {
if (OMPI_SUCCESS != (ret = ompi_mpiext_init())) {
error = "ompi_mpiext_init";
goto error;
}