diff --git a/orte/mca/plm/alps/plm_alps_module.c b/orte/mca/plm/alps/plm_alps_module.c index 6ecd0bc12e..d71a314110 100644 --- a/orte/mca/plm/alps/plm_alps_module.c +++ b/orte/mca/plm/alps/plm_alps_module.c @@ -94,6 +94,7 @@ orte_plm_base_module_t orte_plm_alps_module = { plm_alps_init, orte_plm_base_set_hnp_name, plm_alps_launch_job, + NULL, plm_alps_terminate_job, plm_alps_terminate_orteds, plm_alps_signal_job, diff --git a/orte/mca/plm/ccp/plm_ccp_module.c b/orte/mca/plm/ccp/plm_ccp_module.c index c5c25e4d67..4b48a68b9d 100644 --- a/orte/mca/plm/ccp/plm_ccp_module.c +++ b/orte/mca/plm/ccp/plm_ccp_module.c @@ -89,6 +89,7 @@ orte_plm_base_module_t orte_plm_ccp_module = { plm_ccp_init, orte_plm_base_set_hnp_name, plm_ccp_launch_job, + NULL, plm_ccp_terminate_job, plm_ccp_terminate_orteds, plm_ccp_signal_job, diff --git a/orte/mca/plm/gridengine/plm_gridengine_module.c b/orte/mca/plm/gridengine/plm_gridengine_module.c index ce50a074d9..044f34b4b6 100644 --- a/orte/mca/plm/gridengine/plm_gridengine_module.c +++ b/orte/mca/plm/gridengine/plm_gridengine_module.c @@ -100,6 +100,7 @@ orte_plm_base_module_t orte_plm_gridengine_module = { plm_gridengine_init, orte_plm_base_set_hnp_name, plm_gridengine_launch_job, + NULL, plm_gridengine_terminate_job, plm_gridengine_terminate_orteds, plm_gridengine_signal_job, diff --git a/orte/mca/plm/lsf/plm_lsf_module.c b/orte/mca/plm/lsf/plm_lsf_module.c index c6e92c0c3b..2e25cc91e3 100644 --- a/orte/mca/plm/lsf/plm_lsf_module.c +++ b/orte/mca/plm/lsf/plm_lsf_module.c @@ -93,6 +93,7 @@ orte_plm_base_module_1_3_0_t orte_plm_lsf_module = { plm_lsf_init, orte_plm_base_set_hnp_name, plm_lsf_launch_job, + NULL, plm_lsf_terminate_job, plm_lsf_terminate_orteds, plm_lsf_signal_job, diff --git a/orte/mca/plm/process/plm_process_module.c b/orte/mca/plm/process/plm_process_module.c index 29e08119ff..a7bf1b77cc 100644 --- a/orte/mca/plm/process/plm_process_module.c +++ b/orte/mca/plm/process/plm_process_module.c @@ -112,6 +112,7 @@ orte_plm_base_module_t orte_plm_process_module = { #else orte_plm_process_launch, #endif + NULL, orte_plm_process_terminate_job, orte_plm_process_terminate_orteds, orte_plm_process_signal_job, diff --git a/orte/mca/plm/submit/pls_submit_module.c b/orte/mca/plm/submit/pls_submit_module.c index 1983500f4b..4f71f61a41 100644 --- a/orte/mca/plm/submit/pls_submit_module.c +++ b/orte/mca/plm/submit/pls_submit_module.c @@ -96,6 +96,7 @@ orte_plm_base_module_t orte_plm_submit_module = { #else orte_plm_submit_launch, #endif + NULL, orte_plm_submit_terminate_job, orte_plm_submit_terminate_orteds, orte_plm_submit_signal_job, diff --git a/orte/mca/plm/tm/plm_tm_module.c b/orte/mca/plm/tm/plm_tm_module.c index 98ec9f79ad..95621347d8 100644 --- a/orte/mca/plm/tm/plm_tm_module.c +++ b/orte/mca/plm/tm/plm_tm_module.c @@ -95,6 +95,7 @@ orte_plm_base_module_t orte_plm_tm_module = { plm_tm_init, orte_plm_base_set_hnp_name, plm_tm_launch_job, + NULL, plm_tm_terminate_job, plm_tm_terminate_orteds, plm_tm_signal_job, diff --git a/orte/mca/plm/xgrid/src/plm_xgrid_module.m b/orte/mca/plm/xgrid/src/plm_xgrid_module.m index f269ccd2db..3485620728 100644 --- a/orte/mca/plm/xgrid/src/plm_xgrid_module.m +++ b/orte/mca/plm/xgrid/src/plm_xgrid_module.m @@ -57,6 +57,7 @@ orte_plm_base_module_1_0_0_t orte_plm_xgrid_module = { orte_plm_xgrid_init, orte_plm_base_set_hnp_name, orte_plm_xgrid_spawn, + NULL, orte_plm_xgrid_terminate_job, orte_plm_xgrid_terminate_orteds, orte_plm_xgrid_signal_job,