1
1

* make the xgrid component compile again. still need to test tomorrow...

This commit was SVN r8913.
Этот коммит содержится в:
Brian Barrett 2006-02-07 04:46:00 +00:00
родитель 4b9f015c0b
Коммит 72de49f0ad
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -101,7 +101,11 @@ mca_pls_xgrid_set_node_name(orte_ras_node_t* node,
return ORTE_ERR_OUT_OF_RESOURCE;
}
kv->value->type = ORTE_NAME;
if (ORTE_SUCCESS != (rc = orte_dss.copy(&(kv->value->data), name, ORTE_NAME);
if (ORTE_SUCCESS != (rc = orte_dss.copy(&(kv->value->data), name, ORTE_NAME))) {
ORTE_ERROR_LOG(rc);
OBJ_RELEASE(value);
return rc;
}
rc = orte_gpr.put(1, values);
if(ORTE_SUCCESS != rc) {

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

@ -124,7 +124,7 @@ orte_pls_xgrid_terminate_job(orte_jobid_t jobid)
char *keys[2];
char *jobid_string;
orte_gpr_value_t** values = NULL;
orte_process_name *name;
orte_process_name_t *name;
size_t i, j, num_values = 0;
int rc;