1
1

removed finalize from pml module

This commit was SVN r598.
Этот коммит содержится в:
Tim Woodall 2004-01-30 00:16:59 +00:00
родитель 5ccd562fc3
Коммит 95c8f5525c

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

@ -45,9 +45,6 @@ typedef struct mca_pml_1_0_0_t * (*mca_pml_base_module_init_fn_t)(
int* min_thread, int* min_thread,
int* max_thread); int* max_thread);
typedef int (*mca_pml_base_module_finalize_fn_t)(void);
/** /**
* PML module version and interface functions. * PML module version and interface functions.
*/ */
@ -56,7 +53,6 @@ struct mca_pml_base_module_1_0_0_t {
mca_base_module_t pmlm_version; mca_base_module_t pmlm_version;
mca_base_module_data_1_0_0_t pmlm_data; mca_base_module_data_1_0_0_t pmlm_data;
mca_pml_base_module_init_fn_t pmlm_init; mca_pml_base_module_init_fn_t pmlm_init;
mca_pml_base_module_finalize_fn_t pmlm_finalize;
}; };
typedef struct mca_pml_base_module_1_0_0_t mca_pml_base_module_1_0_0_t; typedef struct mca_pml_base_module_1_0_0_t mca_pml_base_module_1_0_0_t;
typedef mca_pml_base_module_1_0_0_t mca_pml_base_module_t; typedef mca_pml_base_module_1_0_0_t mca_pml_base_module_t;