From 31cdbcfa5f7d59e66fe141b043595b03bbb13225 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Wed, 20 Jan 2010 15:35:23 +0000 Subject: [PATCH] Set the nameisset flag during dyn_init. Thanks to Guillaume Thouvenin for spotting the problem. This commit was SVN r22460. --- ompi/mca/dpm/orte/dpm_orte.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ompi/mca/dpm/orte/dpm_orte.c b/ompi/mca/dpm/orte/dpm_orte.c index 012f3f5f71..e5ee3aa898 100644 --- a/ompi/mca/dpm/orte/dpm_orte.c +++ b/ompi/mca/dpm/orte/dpm_orte.c @@ -965,6 +965,7 @@ static int dyn_init(void) /* Set name for debugging purposes */ snprintf(newcomm->c_name, MPI_MAX_OBJECT_NAME, "MPI_COMM_PARENT"); + newcomm->c_flags |= OMPI_COMM_NAMEISSET; return OMPI_SUCCESS; }