1
1

fix hangs introduced by previous commit a6744b8177

Этот коммит содержится в:
Gilles Gouaillardet 2014-11-25 17:50:44 +09:00
родитель a6744b8177
Коммит 578fe41788
2 изменённых файлов: 1 добавлений и 13 удалений

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

@ -163,7 +163,6 @@ static int pmix_sm_attach(uint32_t jid, char *seg_info)
rc = opal_dstore.update(opal_dstore_modex, &attrs);
opal_list_remove_item(&attrs, &attr->super);
free(attr->connection_info);
OBJ_RELEASE(attr);
OPAL_LIST_DESTRUCT(&attrs);
return rc;

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

@ -12,8 +12,6 @@
* All rights reserved.
* Copyright (c) 2011-2012 Los Alamos National Security, LLC.
* All rights reserved.
* Copyright (c) 2014 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -70,18 +68,9 @@ static void gccon(orte_grpcomm_caddy_t *p)
p->cbfunc = NULL;
p->cbdata = NULL;
}
static void gcdes(orte_grpcomm_caddy_t *p)
{
if (NULL != p->sig) {
OBJ_RELEASE(p->sig);
}
p->buf = NULL;
p->cbfunc = NULL;
p->cbdata = NULL;
}
static OBJ_CLASS_INSTANCE(orte_grpcomm_caddy_t,
opal_object_t,
gccon, gcdes);
gccon, NULL);
int orte_grpcomm_API_xcast(orte_grpcomm_signature_t *sig,
orte_rml_tag_t tag,