1
1

Remove the no-longer-used variables from the opal_hash_table_t definition, and their reference in the ompi debugger code.

Этот коммит содержится в:
Ralph Castain 2014-11-03 21:34:44 -08:00
родитель 738c3e1d72
Коммит a4c0019153
2 изменённых файлов: 2 добавлений и 9 удалений

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

@ -7,6 +7,7 @@
* Copyright (c) 2012-2013 Inria. All rights reserved.
* Copyright (c) 2014 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2014 Intel, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -152,12 +153,8 @@ int ompi_fill_in_type_info(mqs_image *image, char **message)
i_info->opal_hash_table_t.size = mqs_sizeof(qh_type);
ompi_field_offset(i_info->opal_hash_table_t.offset.ht_table,
qh_type, opal_hash_table_t, ht_table);
ompi_field_offset(i_info->opal_hash_table_t.offset.ht_table_size,
qh_type, opal_hash_table_t, ht_table_size);
ompi_field_offset(i_info->opal_hash_table_t.offset.ht_size,
qh_type, opal_hash_table_t, ht_size);
ompi_field_offset(i_info->opal_hash_table_t.offset.ht_mask,
qh_type, opal_hash_table_t, ht_mask);
}
/*
* Now let's look for all types required for reading the requests.

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

@ -13,6 +13,7 @@
* All rights reserved.
* Copyright (c) 2014-2015 Mellanox Technologies, Inc.
* All rights reserved.
* Copyright (c) 2014 Intel, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -53,11 +54,6 @@ struct opal_hash_table_t
int ht_density_numer, ht_density_denom; /**< max allowed density of table */
int ht_growth_numer, ht_growth_denom; /**< growth factor when grown */
const struct opal_hash_type_methods_t * ht_type_methods;
// FIXME
// Begin KLUDGE!! So ompi/debuggers/ompi_common_dll.c doesn't complain
size_t ht_table_size; /**< size of table */
size_t ht_mask;
// End KLUDGE
};
typedef struct opal_hash_table_t opal_hash_table_t;