1
1

return count of items progressed

This commit was SVN r3684.
Этот коммит содержится в:
Tim Woodall 2004-12-02 21:46:43 +00:00
родитель fe0c633862
Коммит add68613f2

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

@ -22,7 +22,7 @@ int mca_pml_teg_progress(void)
{
mca_ptl_tstamp_t tstamp = 0;
size_t i;
int count;
int count = 0;
/*
* Progress each of the PTL modules
@ -36,6 +36,6 @@ int mca_pml_teg_progress(void)
count += rc;
}
}
return OMPI_SUCCESS;
return count;
}