1
1

Fix a few interface changes introduced by r14475

This commit was SVN r14479.

The following SVN revision numbers were found above:
  r14475 --> open-mpi/ompi@18b2dca51c
Этот коммит содержится в:
Josh Hursey 2007-04-23 20:18:27 +00:00
родитель 5f94d6d791
Коммит 260e7612ad
2 изменённых файлов: 3 добавлений и 5 удалений

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

@ -157,8 +157,7 @@ extern "C" {
* Xcast
*/
int orte_rml_ftrm_xcast(orte_jobid_t job,
bool process_first,
orte_buffer_t* buffer,
orte_gpr_notify_message_t *msg,
orte_gpr_trigger_cb_fn_t cbfunc);
/*

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

@ -392,8 +392,7 @@ int orte_rml_ftrm_recv_cancel(orte_process_name_t* peer, orte_rml_tag_t tag)
* Xcast
*/
int orte_rml_ftrm_xcast(orte_jobid_t job,
bool process_first,
orte_buffer_t* buffer,
orte_gpr_notify_message_t *msg,
orte_gpr_trigger_cb_fn_t cbfunc)
{
int ret;
@ -402,7 +401,7 @@ int orte_rml_ftrm_xcast(orte_jobid_t job,
"orte_rml_ftrm: xcast()");
if( NULL != wrapped_module.xcast ) {
if( ORTE_SUCCESS != (ret = wrapped_module.xcast(job, process_first, buffer, cbfunc) ) ) {
if( ORTE_SUCCESS != (ret = wrapped_module.xcast(job, msg, cbfunc) ) ) {
return ret;
}
}