1
1

Merge pull request #4549 from rhc54/topic/dyn

Fix the hang in connect/accept operations
Этот коммит содержится в:
Ralph Castain 2017-11-29 06:39:29 -08:00 коммит произвёл GitHub
родитель 38aefd2ec4 5e109fba6a
Коммит bb100540ef
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -588,13 +588,8 @@ int ompi_dpm_disconnect(ompi_communicator_t *comm)
} }
/* ensure we tell the host RM to disconnect us - this /* ensure we tell the host RM to disconnect us - this
* is a blocking operation that must include a fence */ * is a blocking operation so just use a fence */
if (NULL == opal_pmix.disconnect) {
/* use the fence */
ret = opal_pmix.fence(&coll, false); ret = opal_pmix.fence(&coll, false);
} else {
ret = opal_pmix.disconnect(&coll);
}
OPAL_LIST_DESTRUCT(&coll); OPAL_LIST_DESTRUCT(&coll);
return ret; return ret;