221fb9dbca
- Delete unnecessary header files using contrib/check_unnecessary_headers.sh after applying patches, that include headers, being "lost" due to inclusion in one of the now deleted headers... In total 817 files are touched. In ompi/mpi/c/ header files are moved up into the actual c-file, where necessary (these are the only additional #include), otherwise it is only deletions of #include (apart from the above additions required due to notifier...) - To get different MCAs (OpenIB, TM, ALPS), an earlier version was successfully compiled (yesterday) on: Linux locally using intel-11, gcc-4.3.2 and gcc-SVN + warnings enabled Smoky cluster (x86-64 running Linux) using PGI-8.0.2 + warnings enabled Lens cluster (x86-64 running Linux) using Pathscale-3.2 + warnings enabled This commit was SVN r21096.
72 строки
1.7 KiB
C
72 строки
1.7 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2006 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 "opal_config.h"
|
|
|
|
#include "opal/dss/dss_internal.h"
|
|
|
|
void opal_dss_release(opal_dss_value_t *value)
|
|
{
|
|
opal_dss_type_info_t *info = NULL;
|
|
|
|
/* check for error */
|
|
if (NULL == value) {
|
|
return;
|
|
}
|
|
|
|
/* Lookup the release function for this type and call it */
|
|
|
|
if (NULL == (info = (opal_dss_type_info_t*)opal_pointer_array_get_item(&opal_dss_types, value->type))) {
|
|
return;
|
|
}
|
|
|
|
info->odti_release_fn(value);
|
|
}
|
|
|
|
/*
|
|
* STANDARD RELEASE FUNCTION - WORKS FOR EVERYTHING NON-STRUCTURED
|
|
*/
|
|
void opal_dss_std_release(opal_dss_value_t *value)
|
|
{
|
|
free(value->data);
|
|
value->data = NULL;
|
|
}
|
|
|
|
/*
|
|
* STANDARD OBJECT RELEASE FUNCTION - WORKS FOR EVERYTHING
|
|
*/
|
|
void opal_dss_std_obj_release(opal_dss_value_t *value)
|
|
{
|
|
OBJ_RELEASE(value->data);
|
|
}
|
|
|
|
|
|
/*
|
|
* OPAL_BYTE_OBJECT
|
|
*/
|
|
void opal_dss_release_byte_object(opal_dss_value_t *value)
|
|
{
|
|
opal_byte_object_t *bo;
|
|
|
|
bo = (opal_byte_object_t*)value->data;
|
|
free(bo->bytes);
|
|
|
|
free(value->data);
|
|
value->data = NULL;
|
|
}
|