1
1
openmpi/orte/class/orte_value_array.c
Ralph Castain 5dfd54c778 With the branch to 1.2 made....
Clean up the remainder of the size_t references in the runtime itself. Convert to orte_std_cntr_t wherever it makes sense (only avoid those places where the actual memory size is referenced).

Remove the obsolete oob barrier function (we actually obsoleted it a long time ago - just never bothered to clean it up).

I have done my best to go through all the components and catch everything, even if I couldn't test compile them since I wasn't on that type of system. Still, I cannot guarantee that problems won't show up when you test this on specific systems. Usually, these will just show as "warning: comparison between signed and unsigned" notes which are easily fixed (just change a size_t to orte_std_cntr_t).

In some places, people didn't use size_t, but instead used some other variant (e.g., I found several places with uint32_t). I tried to catch all of them, but...

Once we get all the instances caught and fixed, this should once and for all resolve many of the heterogeneity problems.

This commit was SVN r11204.
2006-08-15 19:54:10 +00:00

69 строки
2.0 KiB
C

/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "orte_config.h"
#include "orte/orte_constants.h"
#include "orte/class/orte_value_array.h"
static void orte_value_array_construct(orte_value_array_t* array)
{
array->array_items = NULL;
array->array_size = 0;
array->array_item_sizeof = 0;
array->array_alloc_size = 0;
}
static void orte_value_array_destruct(orte_value_array_t* array)
{
if (NULL != array->array_items)
free(array->array_items);
}
opal_class_t orte_value_array_t_class = {
"orte_value_array_t",
OBJ_CLASS(opal_object_t),
(opal_construct_t)orte_value_array_construct,
(opal_destruct_t)orte_value_array_destruct
};
int orte_value_array_set_size(orte_value_array_t* array, orte_std_cntr_t size)
{
#if OMPI_ENABLE_DEBUG
if(array->array_item_sizeof == 0) {
opal_output(0, "orte_value_array_set_size: item size must be initialized");
return ORTE_ERR_BAD_PARAM;
}
#endif
if(size > array->array_alloc_size) {
while(array->array_alloc_size < size)
array->array_alloc_size <<= 1;
array->array_items = (unsigned char *)realloc(array->array_items,
array->array_alloc_size * array->array_item_sizeof);
if (NULL == array->array_items)
return ORTE_ERR_OUT_OF_RESOURCE;
}
array->array_size = size;
return ORTE_SUCCESS;
}