1
1

btl/vader: fix deadlock in mca_btl_vader_progress_endpoints

This commit fixes a typo in mca_btl_vader_progress_endpoints where
OPAL_THREAD_LOCK was used when OPAL_THREAD_UNLOCK was intended.

Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
Этот коммит содержится в:
Nathan Hjelm 2015-04-14 09:33:19 -06:00
родитель a4b1225892
Коммит f8158a5ec1

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

@ -661,7 +661,7 @@ static void mca_btl_vader_progress_endpoints (void)
for (int i = 0 ; i < count ; ++i) {
mca_btl_vader_progress_waiting ((mca_btl_base_endpoint_t *) opal_list_remove_first (&mca_btl_vader_component.pending_endpoints));
}
OPAL_THREAD_LOCK(&mca_btl_vader_component.lock);
OPAL_THREAD_UNLOCK(&mca_btl_vader_component.lock);
}
static int mca_btl_vader_component_progress (void)