1
1

Move finalize back up into the module struct. This the last time

I'll move finalize; I swear it.

This commit was SVN r629.
Этот коммит содержится в:
Jeff Squyres 2004-01-31 21:44:54 +00:00
родитель 2df075a1ff
Коммит c93e1bd291
3 изменённых файлов: 5 добавлений и 5 удалений

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

@ -20,7 +20,6 @@ mca_pml_teg_t mca_pml_teg = {
mca_pml_teg_add_procs, mca_pml_teg_add_procs,
mca_pml_teg_del_procs, mca_pml_teg_del_procs,
mca_pml_teg_add_ptls, mca_pml_teg_add_ptls,
mca_pml_teg_fini,
mca_pml_teg_progress, mca_pml_teg_progress,
mca_pml_teg_irecv_init, mca_pml_teg_irecv_init,
mca_pml_teg_irecv, mca_pml_teg_irecv,
@ -245,7 +244,7 @@ int mca_pml_teg_del_procs(lam_proc_t** procs, size_t nprocs)
return LAM_SUCCESS; return LAM_SUCCESS;
} }
int mca_pml_teg_fini(void) int mca_pml_teg_module_fini(void)
{ {
/* FIX */ /* FIX */
return LAM_SUCCESS; return LAM_SUCCESS;

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

@ -60,6 +60,8 @@ extern mca_pml_t* mca_pml_teg_module_init(
bool *have_hidden_threads bool *have_hidden_threads
); );
extern int mca_pml_teg_module_fini(void);
/* /*
@ -88,8 +90,6 @@ extern int mca_pml_teg_add_ptls(
lam_list_t *ptls lam_list_t *ptls
); );
extern int mca_pml_teg_fini(void);
extern int mca_pml_teg_isend_init( extern int mca_pml_teg_isend_init(
void *buf, void *buf,
size_t size, size_t size,

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

@ -40,7 +40,8 @@ mca_pml_base_module_1_0_0_t mca_pml_teg_module = {
false false
}, },
mca_pml_teg_module_init /* module init */ mca_pml_teg_module_init, /* module init */
mca_pml_teg_module_fini /* module finalize */
}; };