1
1

Clean out some debugging statements that were inadvertently left in the commit

This commit was SVN r11933.
Этот коммит содержится в:
Ralph Castain 2006-10-02 15:03:18 +00:00
родитель 559b9b0ae8
Коммит 7494a7a83f
4 изменённых файлов: 0 добавлений и 16 удалений

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

@ -125,13 +125,11 @@ void orte_pls_base_recv(int status, orte_process_name_t* sender,
break;
case ORTE_PLS_TERMINATE_JOB_CMD:
opal_output(0, "pls_base_recv: terminate job");
count = 1;
if (ORTE_SUCCESS != (rc = orte_dss.unpack(buffer, &job, &count, ORTE_JOBID))) {
ORTE_ERROR_LOG(rc);
goto SEND_ANSWER;
}
opal_output(0, "pls_base_recv: terminate job with jobid %ld", (long)job);
if (ORTE_SUCCESS != (rc = orte_pls.terminate_job(job))) {
ORTE_ERROR_LOG(rc);
@ -145,8 +143,6 @@ void orte_pls_base_recv(int status, orte_process_name_t* sender,
goto SEND_ANSWER;
}
opal_output(0, "pls_base_recv: terminate orteds with jobid %ld", (long)job);
if (ORTE_SUCCESS != (rc = orte_pls.terminate_orteds(job))) {
ORTE_ERROR_LOG(rc);
}

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

@ -135,8 +135,6 @@ int orte_pls_proxy_terminate_job(orte_jobid_t job)
return rc;
}
opal_output(0, "pls_proxy_terminate_job: sending for job %ld", (long)job);
if (0 > orte_rml.send_buffer(orte_pls_proxy_replica, cmd, ORTE_RML_TAG_PLS, 0)) {
ORTE_ERROR_LOG(ORTE_ERR_COMM_FAILURE);
OBJ_RELEASE(cmd);
@ -181,8 +179,6 @@ int orte_pls_proxy_terminate_orteds(orte_jobid_t job)
orte_std_cntr_t count;
int rc;
opal_output(0, "pls_proxy_terminate_orteds: sending for job %ld", (long)job);
command = ORTE_PLS_TERMINATE_ORTEDS_CMD;
cmd = OBJ_NEW(orte_buffer_t);

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

@ -1081,8 +1081,6 @@ int orte_pls_rsh_terminate_job(orte_jobid_t jobid)
goto CLEANUP;
}
opal_output(0, "pls_rsh_terminate_job: called for job %ld with %ld daemons", jobid, (long)opal_list_get_size(&daemons));
/* order them to kill their local procs for this job */
if (ORTE_SUCCESS != (rc = orte_pls_base_orted_kill_local_procs(&daemons, jobid))) {
ORTE_ERROR_LOG(rc);
@ -1113,8 +1111,6 @@ int orte_pls_rsh_terminate_orteds(orte_jobid_t jobid)
goto CLEANUP;
}
opal_output(0, "pls_rsh_terminate_orteds: called for job %ld with %ld daemons", jobid, (long)opal_list_get_size(&daemons));
/* now tell them to die! */
if (ORTE_SUCCESS != (rc = orte_pls_base_orted_exit(&daemons))) {
ORTE_ERROR_LOG(rc);

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

@ -635,8 +635,6 @@ static void orte_daemon_recv_pls(int status, orte_process_name_t* sender,
* we should kill all local procs. Otherwise, only kill those within
* the specified jobid
*/
opal_output(0, "orted_daemon_recv_pls: kill_local_procs");
n = 1;
if (ORTE_SUCCESS != (ret = orte_dss.unpack(buffer, &job, &n, ORTE_JOBID))) {
ORTE_ERROR_LOG(ret);
@ -687,8 +685,6 @@ static void orte_daemon_recv_pls(int status, orte_process_name_t* sender,
/**** EXIT COMMAND ****/
case ORTE_DAEMON_EXIT_CMD:
opal_output(0, "orted_daemon_recv_pls: exit");
/* send the response before we wakeup because otherwise
* we'll depart before it gets out!
*/