From 73f05ce012dbbcd672ab0a4354ee6446a5a114da Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Sat, 2 Jul 2005 15:51:22 +0000 Subject: [PATCH] * remove last of ompi_free_list / mpool refs This commit was SVN r6298. --- opal/class/opal_free_list.c | 1 - opal/class/opal_free_list.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/opal/class/opal_free_list.c b/opal/class/opal_free_list.c index 33152f55b2..f9044b531d 100644 --- a/opal/class/opal_free_list.c +++ b/opal/class/opal_free_list.c @@ -41,7 +41,6 @@ static void opal_free_list_construct(opal_free_list_t* fl) fl->fl_num_waiting = 0; fl->fl_elem_size = 0; fl->fl_elem_class = 0; - fl->fl_mpool = 0; } static void opal_free_list_destruct(opal_free_list_t* fl) diff --git a/opal/class/opal_free_list.h b/opal/class/opal_free_list.h index 22ba46486d..40e6ad3b5b 100644 --- a/opal/class/opal_free_list.h +++ b/opal/class/opal_free_list.h @@ -62,7 +62,7 @@ typedef struct opal_free_list_item_t opal_free_list_item_t; */ OMPI_DECLSPEC int opal_free_list_init( - ompi_free_list_t *free_list, + opal_free_list_t *free_list, size_t element_size, ompi_class_t* element_class, int num_elements_to_alloc,