From d86e6858ff9a842495e4a7ba97da310bcc7d31c9 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Fri, 30 Apr 2004 20:09:11 +0000 Subject: [PATCH] Introduce mpi_error_check parameter to detect at runtime if the user want to check the consistency of MPI functions arguments. This commit was SVN r1107. --- src/runtime/lam_mpi_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/lam_mpi_init.c b/src/runtime/lam_mpi_init.c index 36c2a1b83b..3a1182a79b 100644 --- a/src/runtime/lam_mpi_init.c +++ b/src/runtime/lam_mpi_init.c @@ -126,7 +126,7 @@ int lam_mpi_init(int argc, char **argv, int requested, int *provided) /* If we have run-time MPI parameter checking possible, register an MCA paramter to find out if the user wants it on or off by default */ - + param = mca_base_param_register_int("mpi", NULL, "error_check", NULL, 1); mca_base_param_lookup_int(param, &value); lam_mpi_param_check = (bool) value;