1
1

Add support to signal application procs for LSF

This commit was SVN r16120.
Этот коммит содержится в:
Ralph Castain 2007-09-13 18:09:14 +00:00
родитель 4033a40e4e
Коммит 45986ad2aa

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

@ -419,7 +419,13 @@ static int pls_lsf_terminate_proc(const orte_process_name_t *name)
*/
static int pls_lsf_signal_job(orte_jobid_t jobid, int32_t signal, opal_list_t *attrs)
{
return ORTE_SUCCESS;
int rc;
/* order the orteds to pass this signal to their local procs */
if (ORTE_SUCCESS != (rc = orte_pls_base_orted_signal_local_procs(jobid, signal, attrs))) {
ORTE_ERROR_LOG(rc);
}
return rc;
}