1
1

We only care about the value of ret in the

!OMPI_ENABLE_PROGRESS_THREADS case.  Reviewed by Brian.

This commit was SVN r16000.
Этот коммит содержится в:
Jeff Squyres 2007-08-29 01:36:17 +00:00
родитель 5628084fec
Коммит 466394a878
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -691,14 +691,14 @@ int
ompi_osc_pt2pt_component_progress(void)
{
opal_list_item_t *item;
int ret = 0, done = 0;
int ret, done = 0;
#if OMPI_ENABLE_PROGRESS_THREADS
OPAL_THREAD_LOCK(&mca_osc_pt2pt_component.p2p_c_lock);
#else
ret = OPAL_THREAD_TRYLOCK(&mca_osc_pt2pt_component.p2p_c_lock);
#endif
if (ret != 0) return 0;
#endif
for (item = opal_list_get_first(&mca_osc_pt2pt_component.p2p_c_pending_requests) ;
item != opal_list_get_end(&mca_osc_pt2pt_component.p2p_c_pending_requests) ;

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

@ -932,8 +932,8 @@ ompi_osc_rdma_component_progress(void)
OPAL_THREAD_LOCK(&mca_osc_rdma_component.c_lock);
#else
ret = OPAL_THREAD_TRYLOCK(&mca_osc_rdma_component.c_lock);
#endif
if (ret != 0) return 0;
#endif
for (item = opal_list_get_first(&mca_osc_rdma_component.c_pending_requests) ;
item != opal_list_get_end(&mca_osc_rdma_component.c_pending_requests) ;