1
1

orte: rename the global variable component_map into orte_component_map

Thanks @goodell for pointing this !
Этот коммит содержится в:
Gilles Gouaillardet 2015-04-16 09:51:50 +09:00
родитель f0e650fef5
Коммит a80fda25d8
3 изменённых файлов: 13 добавлений и 11 удалений

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

@ -58,7 +58,7 @@ OBJ_CLASS_INSTANCE(orte_info_component_map_t,
component_map_construct,
component_map_destruct);
opal_pointer_array_t component_map = {{0}};
opal_pointer_array_t orte_component_map = {{0}};
/*
* Private variables
@ -76,11 +76,11 @@ void orte_info_components_open(void)
opened_components = true;
/* init the map */
OBJ_CONSTRUCT(&component_map, opal_pointer_array_t);
opal_pointer_array_init(&component_map, 256, INT_MAX, 128);
OBJ_CONSTRUCT(&orte_component_map, opal_pointer_array_t);
opal_pointer_array_init(&orte_component_map, 256, INT_MAX, 128);
opal_info_register_framework_params(&component_map);
orte_info_register_framework_params(&component_map);
opal_info_register_framework_params(&orte_component_map);
orte_info_register_framework_params(&orte_component_map);
}
/*
@ -98,13 +98,13 @@ void orte_info_components_close(void)
orte_info_close_components ();
opal_info_close_components ();
for (i=0; i < component_map.size; i++) {
if (NULL != (map = (orte_info_component_map_t*)opal_pointer_array_get_item(&component_map, i))) {
for (i=0; i < orte_component_map.size; i++) {
if (NULL != (map = (orte_info_component_map_t*)opal_pointer_array_get_item(&orte_component_map, i))) {
OBJ_RELEASE(map);
}
}
OBJ_DESTRUCT(&component_map);
OBJ_DESTRUCT(&orte_component_map);
opened_components = false;
}

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

@ -10,6 +10,8 @@
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2007-2010 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -115,7 +117,7 @@ typedef struct {
} orte_info_component_map_t;
ORTE_DECLSPEC OBJ_CLASS_DECLARATION(orte_info_component_map_t);
extern opal_pointer_array_t component_map;
extern opal_pointer_array_t orte_component_map;
void orte_info_components_open(void);
void orte_info_components_close(void);

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

@ -166,8 +166,8 @@ void orte_info_show_component_version(const char *type_name,
/* Now that we have a valid type, find the right component list */
components = NULL;
for (j=0; j < component_map.size; j++) {
if (NULL == (map = (orte_info_component_map_t*)opal_pointer_array_get_item(&component_map, j))) {
for (j=0; j < orte_component_map.size; j++) {
if (NULL == (map = (orte_info_component_map_t*)opal_pointer_array_get_item(&orte_component_map, j))) {
continue;
}
if (0 == strcmp(type_name, map->type)) {