2004-04-06 20:32:40 +04:00
|
|
|
#include "event/event.h"
|
|
|
|
#include "mca/pml/pml.h"
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "runtime/ompi_progress.h"
|
2004-04-06 20:32:40 +04:00
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_progress(void)
|
2004-04-06 20:32:40 +04:00
|
|
|
{
|
2004-08-17 20:08:50 +04:00
|
|
|
ompi_event_loop(OMPI_EVLOOP_NONBLOCK);
|
2004-06-24 20:47:00 +04:00
|
|
|
mca_pml.pml_progress();
|
2004-04-06 20:32:40 +04:00
|
|
|
}
|
|
|
|
|