1
1

progress routine for non-threaded case

This commit was SVN r1015.
Этот коммит содержится в:
Tim Woodall 2004-04-06 16:32:40 +00:00
родитель a4422f55f8
Коммит d8f4557659
2 изменённых файлов: 17 добавлений и 0 удалений

10
src/runtime/lam_progress.c Обычный файл
Просмотреть файл

@ -0,0 +1,10 @@
#include "event/event.h"
#include "mca/pml/pml.h"
#include "runtime/lam_progress.h"
void lam_progress(void)
{
lam_event_loop(LAM_EVLOOP_ONCE);
}

7
src/runtime/lam_progress.h Обычный файл
Просмотреть файл

@ -0,0 +1,7 @@
#ifndef _LAM_PROGRESS_H_
#define _LAM_PROGRESS_H_
extern void lam_progress(void);
#endif