From 5f26a8b084e40b1949cb9a9e731a15e115d1fe9b Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Mon, 5 Jan 2009 21:41:40 +0000 Subject: [PATCH] Since we have such a flag in orte_process_info, set it to true when we do mpi_init so we know we have an mpi_proc (simplifies later logic checks) This commit was SVN r20205. --- ompi/runtime/ompi_mpi_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/runtime/ompi_mpi_init.c b/ompi/runtime/ompi_mpi_init.c index 763b8ce1ac..3e879c8648 100644 --- a/ompi/runtime/ompi_mpi_init.c +++ b/ompi/runtime/ompi_mpi_init.c @@ -338,7 +338,7 @@ int ompi_mpi_init(int argc, char **argv, int requested, int *provided) } /* Setup ORTE - note that we are not a tool */ - + orte_process_info.mpi_proc = true; if (ORTE_SUCCESS != (ret = orte_init(ORTE_NON_TOOL))) { error = "ompi_mpi_init: orte_init failed"; goto error;