d70e2e8c2b
Remains to be tested to ensure everything came over cleanly, so please continue to withhold commits a little longer This commit was SVN r17632.
45 строки
1.2 KiB
C
45 строки
1.2 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
* All rights reserved.
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
* 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"
|
|
|
|
int opal_dss_set(opal_dss_value_t *value, void *new_value, opal_data_type_t type)
|
|
{
|
|
/* check for error */
|
|
if (NULL == value || NULL == new_value) {
|
|
return OPAL_ERR_BAD_PARAM;
|
|
}
|
|
|
|
/* see if a value is already loaded - if so, that's just wrong. We can't
|
|
release it ourselves because we don't know for certain that the data
|
|
was stored dynamically
|
|
*/
|
|
if (NULL != value->data) {
|
|
return OPAL_ERR_DATA_OVERWRITE_ATTEMPT;
|
|
}
|
|
|
|
/* set the type */
|
|
value->type = type;
|
|
|
|
/* point the value to the data object */
|
|
value->data = new_value;
|
|
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|