1
1

Fix the plm modules to accommodate the new remote_spawn entry - set that entry to NULL for all but rsh as only that module supports it at this time

This commit was SVN r18145.
Этот коммит содержится в:
Ralph Castain 2008-04-14 19:36:13 +00:00
родитель 84156c422f
Коммит 35c260a14f
8 изменённых файлов: 8 добавлений и 0 удалений

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

@ -94,6 +94,7 @@ orte_plm_base_module_t orte_plm_alps_module = {
plm_alps_init, plm_alps_init,
orte_plm_base_set_hnp_name, orte_plm_base_set_hnp_name,
plm_alps_launch_job, plm_alps_launch_job,
NULL,
plm_alps_terminate_job, plm_alps_terminate_job,
plm_alps_terminate_orteds, plm_alps_terminate_orteds,
plm_alps_signal_job, plm_alps_signal_job,

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

@ -89,6 +89,7 @@ orte_plm_base_module_t orte_plm_ccp_module = {
plm_ccp_init, plm_ccp_init,
orte_plm_base_set_hnp_name, orte_plm_base_set_hnp_name,
plm_ccp_launch_job, plm_ccp_launch_job,
NULL,
plm_ccp_terminate_job, plm_ccp_terminate_job,
plm_ccp_terminate_orteds, plm_ccp_terminate_orteds,
plm_ccp_signal_job, plm_ccp_signal_job,

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

@ -100,6 +100,7 @@ orte_plm_base_module_t orte_plm_gridengine_module = {
plm_gridengine_init, plm_gridengine_init,
orte_plm_base_set_hnp_name, orte_plm_base_set_hnp_name,
plm_gridengine_launch_job, plm_gridengine_launch_job,
NULL,
plm_gridengine_terminate_job, plm_gridengine_terminate_job,
plm_gridengine_terminate_orteds, plm_gridengine_terminate_orteds,
plm_gridengine_signal_job, plm_gridengine_signal_job,

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

@ -93,6 +93,7 @@ orte_plm_base_module_1_3_0_t orte_plm_lsf_module = {
plm_lsf_init, plm_lsf_init,
orte_plm_base_set_hnp_name, orte_plm_base_set_hnp_name,
plm_lsf_launch_job, plm_lsf_launch_job,
NULL,
plm_lsf_terminate_job, plm_lsf_terminate_job,
plm_lsf_terminate_orteds, plm_lsf_terminate_orteds,
plm_lsf_signal_job, plm_lsf_signal_job,

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

@ -112,6 +112,7 @@ orte_plm_base_module_t orte_plm_process_module = {
#else #else
orte_plm_process_launch, orte_plm_process_launch,
#endif #endif
NULL,
orte_plm_process_terminate_job, orte_plm_process_terminate_job,
orte_plm_process_terminate_orteds, orte_plm_process_terminate_orteds,
orte_plm_process_signal_job, orte_plm_process_signal_job,

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

@ -96,6 +96,7 @@ orte_plm_base_module_t orte_plm_submit_module = {
#else #else
orte_plm_submit_launch, orte_plm_submit_launch,
#endif #endif
NULL,
orte_plm_submit_terminate_job, orte_plm_submit_terminate_job,
orte_plm_submit_terminate_orteds, orte_plm_submit_terminate_orteds,
orte_plm_submit_signal_job, orte_plm_submit_signal_job,

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

@ -95,6 +95,7 @@ orte_plm_base_module_t orte_plm_tm_module = {
plm_tm_init, plm_tm_init,
orte_plm_base_set_hnp_name, orte_plm_base_set_hnp_name,
plm_tm_launch_job, plm_tm_launch_job,
NULL,
plm_tm_terminate_job, plm_tm_terminate_job,
plm_tm_terminate_orteds, plm_tm_terminate_orteds,
plm_tm_signal_job, plm_tm_signal_job,

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

@ -57,6 +57,7 @@ orte_plm_base_module_1_0_0_t orte_plm_xgrid_module = {
orte_plm_xgrid_init, orte_plm_xgrid_init,
orte_plm_base_set_hnp_name, orte_plm_base_set_hnp_name,
orte_plm_xgrid_spawn, orte_plm_xgrid_spawn,
NULL,
orte_plm_xgrid_terminate_job, orte_plm_xgrid_terminate_job,
orte_plm_xgrid_terminate_orteds, orte_plm_xgrid_terminate_orteds,
orte_plm_xgrid_signal_job, orte_plm_xgrid_signal_job,