1
1

Move some initial data around that was initializing the wrong members,

and therefore causing tests to fail

This commit was SVN r1811.
Этот коммит содержится в:
Jeff Squyres 2004-07-26 22:24:56 +00:00
родитель 480a552f44
Коммит 584252a4b6

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

@ -39,9 +39,9 @@ ompi_errhandler_t ompi_mpi_errhandler_null = {
{ NULL, 0 },
"MPI_ERRHANDLER_NULL",
OMPI_ERRHANDLER_TYPE_COMM,
true,
false,
OMPI_ERRHANDLER_TYPE_COMM,
{ NULL }
};
@ -53,9 +53,9 @@ ompi_errhandler_t ompi_mpi_errors_are_fatal = {
{ NULL, 0 },
"MPI_ERRORS_ARE_FATAL",
OMPI_ERRHANDLER_TYPE_COMM,
true,
false,
OMPI_ERRHANDLER_TYPE_COMM,
{ ompi_mpi_errors_are_fatal_handler },
-1
};
@ -67,10 +67,10 @@ ompi_errhandler_t ompi_mpi_errors_are_fatal = {
ompi_errhandler_t ompi_mpi_errors_return = {
{ NULL, 0 },
"MPI_ERRORS_ARE_RETURN",
"MPI_ERRORS_RETURN",
OMPI_ERRHANDLER_TYPE_COMM,
true,
false,
OMPI_ERRHANDLER_TYPE_COMM,
{ ompi_mpi_errors_return_handler },
-1
};