1
1

Update the call to orte_plm_base_create_jobid based on the new interface.

This commit was SVN r21393.
Этот коммит содержится в:
George Bosilca 2009-06-08 23:53:53 +00:00
родитель 86d55d7ebf
Коммит 77a6f27d44

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

@ -132,13 +132,13 @@ orte_plm_xgrid_spawn(orte_job_t *jdata)
bool failed_launch = true;
/* create a jobid for this job */
if (ORTE_SUCCESS != (rc = orte_plm_base_create_jobid(&jdata->jobid))) {
if (ORTE_SUCCESS != (rc = orte_plm_base_create_jobid(jdata))) {
ORTE_ERROR_LOG(rc);
goto cleanup;
}
OPAL_OUTPUT_VERBOSE((1, orte_plm_globals.output,
"%s plm:xgrid: setting up job %s",
"%s plm:xgrid: launching job %s",
ORTE_NAME_PRINT(ORTE_PROC_MY_NAME),
ORTE_JOBID_PRINT(jdata->jobid)));