1
1

We don't need the len anymore as everything is not attached to the fragment.

This commit was SVN r9758.
Этот коммит содержится в:
George Bosilca 2006-04-27 17:35:05 +00:00
родитель 5df94f812e
Коммит bafc16f724

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

@ -515,13 +515,12 @@ int orte_iof_base_endpoint_forward(
OPAL_THREAD_UNLOCK(&orte_iof_base.iof_lock);
return ORTE_SUCCESS;
}
rc = 0;
} else {
frag->frag_len -= rc;
rc = 0; /* don't affect the remaining length of the data */
}
frag->frag_len -= rc;
}
if(frag->frag_len > 0 || len == 0) {
if(frag->frag_len >= 0) {
/* handle incomplete write - also queue up 0 byte message
* and recognize this as a request to close the descriptor
* when all pending operations complete