From 260e7612ada31182f053ef2bfa23c2a60652f4fc Mon Sep 17 00:00:00 2001 From: Josh Hursey Date: Mon, 23 Apr 2007 20:18:27 +0000 Subject: [PATCH] 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@18b2dca51c701eb02043d5ca96c031eaa2f69b0d --- orte/mca/rml/ftrm/rml_ftrm.h | 3 +-- orte/mca/rml/ftrm/rml_ftrm_module.c | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/orte/mca/rml/ftrm/rml_ftrm.h b/orte/mca/rml/ftrm/rml_ftrm.h index c25c304475..f421318e98 100644 --- a/orte/mca/rml/ftrm/rml_ftrm.h +++ b/orte/mca/rml/ftrm/rml_ftrm.h @@ -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); /* diff --git a/orte/mca/rml/ftrm/rml_ftrm_module.c b/orte/mca/rml/ftrm/rml_ftrm_module.c index d4fa5a79bd..64955fda02 100644 --- a/orte/mca/rml/ftrm/rml_ftrm_module.c +++ b/orte/mca/rml/ftrm/rml_ftrm_module.c @@ -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; } }