39a6057fc6
* General TCP cleanup for OPAL / ORTE * Simplifying the OOB by moving much of the logic into the RML * Allowing the OOB RML component to do routing of messages * Adding a component framework for handling routing tables * Moving the xcast functionality from the OOB base to its own framework Includes merge from tmp/bwb-oob-rml-merge revisions: r15506, r15507, r15508, r15510, r15511, r15512, r15513 This commit was SVN r15528. The following SVN revisions from the original message are invalid or inconsistent and therefore were not cross-referenced: r15506 r15507 r15508 r15510 r15511 r15512 r15513
86 строки
2.2 KiB
C
86 строки
2.2 KiB
C
/*
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "rml_oob.h"
|
|
|
|
#include "opal/class/opal_list.h"
|
|
#include "orte/mca/oob/oob.h"
|
|
#include "orte/mca/oob/base/base.h"
|
|
|
|
struct orte_rml_oob_exception_t {
|
|
opal_list_item_t super;
|
|
orte_rml_exception_callback_t cbfunc;
|
|
};
|
|
typedef struct orte_rml_oob_exception_t orte_rml_oob_exception_t;
|
|
static OBJ_CLASS_INSTANCE(orte_rml_oob_exception_t, opal_list_item_t,
|
|
NULL, NULL);
|
|
|
|
|
|
void
|
|
orte_rml_oob_exception_callback(const orte_process_name_t *peer,
|
|
orte_rml_exception_t exception)
|
|
{
|
|
opal_list_item_t *item;
|
|
|
|
OPAL_THREAD_LOCK(&orte_rml_oob_module.exceptions_lock);
|
|
|
|
for (item = opal_list_get_first(&orte_rml_oob_module.exceptions) ;
|
|
item != opal_list_get_end(&orte_rml_oob_module.exceptions) ;
|
|
item = opal_list_get_next(item)) {
|
|
orte_rml_oob_exception_t *ex = (orte_rml_oob_exception_t*) item;
|
|
ex->cbfunc(peer, exception);
|
|
}
|
|
|
|
OPAL_THREAD_UNLOCK(&orte_rml_oob_module.exceptions_lock);
|
|
}
|
|
|
|
|
|
int
|
|
orte_rml_oob_add_exception(orte_rml_exception_callback_t cbfunc)
|
|
{
|
|
orte_rml_oob_exception_t *ex = OBJ_NEW(orte_rml_oob_exception_t);
|
|
|
|
if (NULL == ex) return ORTE_ERROR;
|
|
|
|
OPAL_THREAD_LOCK(&orte_rml_oob_module.exceptions_lock);
|
|
|
|
ex->cbfunc = cbfunc;
|
|
opal_list_append(&orte_rml_oob_module.exceptions, &ex->super);
|
|
|
|
OPAL_THREAD_UNLOCK(&orte_rml_oob_module.exceptions_lock);
|
|
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|
|
|
|
int
|
|
orte_rml_oob_del_exception(orte_rml_exception_callback_t cbfunc)
|
|
{
|
|
opal_list_item_t *item;
|
|
|
|
OPAL_THREAD_LOCK(&orte_rml_oob_module.exceptions_lock);
|
|
|
|
for (item = opal_list_get_first(&orte_rml_oob_module.exceptions) ;
|
|
item != opal_list_get_end(&orte_rml_oob_module.exceptions) ;
|
|
item = opal_list_get_next(item)) {
|
|
orte_rml_oob_exception_t *ex = (orte_rml_oob_exception_t*) item;
|
|
|
|
if (cbfunc == ex->cbfunc) {
|
|
opal_list_remove_item(&orte_rml_oob_module.exceptions, item);
|
|
OPAL_THREAD_UNLOCK(&orte_rml_oob_module.exceptions_lock);
|
|
return ORTE_SUCCESS;
|
|
}
|
|
}
|
|
|
|
OPAL_THREAD_UNLOCK(&orte_rml_oob_module.exceptions_lock);
|
|
|
|
return ORTE_ERR_NOT_FOUND;
|
|
}
|