221fb9dbca
- Delete unnecessary header files using contrib/check_unnecessary_headers.sh after applying patches, that include headers, being "lost" due to inclusion in one of the now deleted headers... In total 817 files are touched. In ompi/mpi/c/ header files are moved up into the actual c-file, where necessary (these are the only additional #include), otherwise it is only deletions of #include (apart from the above additions required due to notifier...) - To get different MCAs (OpenIB, TM, ALPS), an earlier version was successfully compiled (yesterday) on: Linux locally using intel-11, gcc-4.3.2 and gcc-SVN + warnings enabled Smoky cluster (x86-64 running Linux) using PGI-8.0.2 + warnings enabled Lens cluster (x86-64 running Linux) using Pathscale-3.2 + warnings enabled This commit was SVN r21096.
84 строки
2.2 KiB
C
84 строки
2.2 KiB
C
/*
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "rml_oob.h"
|
|
|
|
#include "opal/class/opal_list.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;
|
|
}
|