From 95c8f5525c4bfd60da9fb6db4c793894156b257f Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Fri, 30 Jan 2004 00:16:59 +0000 Subject: [PATCH] removed finalize from pml module This commit was SVN r598. --- src/mca/mpi/pml/pml.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/mca/mpi/pml/pml.h b/src/mca/mpi/pml/pml.h index 3f29305208..3a1873489a 100644 --- a/src/mca/mpi/pml/pml.h +++ b/src/mca/mpi/pml/pml.h @@ -45,9 +45,6 @@ typedef struct mca_pml_1_0_0_t * (*mca_pml_base_module_init_fn_t)( int* min_thread, int* max_thread); -typedef int (*mca_pml_base_module_finalize_fn_t)(void); - - /** * 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_data_1_0_0_t pmlm_data; 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 mca_pml_base_module_1_0_0_t mca_pml_base_module_t;