From a5d13104f9ebfd378839a788f39da92b5ad12b5d Mon Sep 17 00:00:00 2001 From: Tim Woodall <twoodall@lanl.gov> Date: Thu, 2 Jun 2005 17:06:33 +0000 Subject: [PATCH] acks should now be handled correctly for stdin This commit was SVN r5923. --- src/mca/iof/base/iof_base_flush.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/mca/iof/base/iof_base_flush.c b/src/mca/iof/base/iof_base_flush.c index 090d1097de..ac1d14e66d 100644 --- a/src/mca/iof/base/iof_base_flush.c +++ b/src/mca/iof/base/iof_base_flush.c @@ -74,9 +74,7 @@ int orte_iof_base_flush(void) item != ompi_list_get_end(&orte_iof_base.iof_endpoints); item = ompi_list_get_next(item)) { orte_iof_base_endpoint_t* endpoint = (orte_iof_base_endpoint_t*)item; - /* BWB - XXX - FIXME - need to remove the ep_mode test - - Tim looking at it */ - if(endpoint->ep_mode == ORTE_IOF_SINK && orte_iof_base_endpoint_pending(endpoint)) { + if(orte_iof_base_endpoint_pending(endpoint)) { pending++; } }