1
1

Propagate the user's callback data during non-blocking sends

This commit was SVN r22432.
Этот коммит содержится в:
Ralph Castain 2010-01-15 20:02:47 +00:00
родитель 6e46fbdd7c
Коммит 3fe5e3e142

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

@ -488,6 +488,7 @@ static int tcp_send_nb(orte_rmcast_channel_t channel,
snd.iovec_count = count;
snd.tag = tag;
snd.cbfunc_iovec = cbfunc;
snd.cbdata = cbdata;
if (ORTE_SUCCESS != (ret = queue_xmit(&snd, channel, tag))) {
ORTE_ERROR_LOG(ret);
@ -540,6 +541,7 @@ static int tcp_send_buffer_nb(orte_rmcast_channel_t channel,
snd.buf = buf;
snd.tag = tag;
snd.cbfunc_buffer = cbfunc;
snd.cbdata = cbdata;
if (ORTE_SUCCESS != (ret = queue_xmit(&snd, channel, tag))) {
ORTE_ERROR_LOG(ret);