1
1

* rename ompi_progress to opal_progress

This commit was SVN r6326.
Этот коммит содержится в:
Brian Barrett
2005-07-03 21:57:43 +00:00
родитель 9da0b4fe1d
Коммит ccd2624e3f
34 изменённых файлов: 105 добавлений и 105 удалений

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

@ -55,7 +55,7 @@ int ompi_request_test_any(
if(num_requests_null_inactive != count) {
*completed = false;
#if OMPI_ENABLE_PROGRESS_THREADS == 0
ompi_progress();
opal_progress();
#endif
} else {
*index = MPI_UNDEFINED;
@ -93,7 +93,7 @@ int ompi_request_test_all(
if (num_completed != count) {
*completed = false;
#if OMPI_ENABLE_PROGRESS_THREADS == 0
ompi_progress();
opal_progress();
#endif
return OMPI_SUCCESS;
}

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

@ -26,7 +26,7 @@
#include "opal/class/opal_list.h"
#include "class/ompi_pointer_array.h"
#include "errhandler/errhandler.h"
#include "runtime/ompi_progress.h"
#include "opal/runtime/opal_progress.h"
#include "threads/mutex.h"
#include "threads/condition.h"
@ -226,7 +226,7 @@ static inline int ompi_request_test(
} else {
*completed = false;
#if OMPI_ENABLE_PROGRESS_THREADS == 0
ompi_progress();
opal_progress();
#endif
return OMPI_SUCCESS;
}