
so that the rsh pcm can use it as well. * do the right things so that ssh exits if HIGH_QOS was not requested or stays alive and is monitored if HIGH_QOS is requested (which is the default for mpirun). * Add code to support notifying people that procs have died, but turned off since it will deadlock the gpr. This commit was SVN r2870.
30 строки
614 B
C
30 строки
614 B
C
/*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "include/constants.h"
|
|
#include "mca/mca.h"
|
|
#include "mca/base/base.h"
|
|
#include "mca/pcm/pcm.h"
|
|
#include "mca/pcm/base/base.h"
|
|
#include "mca/pcm/base/base_job_track.h"
|
|
|
|
int mca_pcm_base_close(void)
|
|
{
|
|
mca_pcm_base_job_list_fini();
|
|
|
|
/* Close all remaining available modules (may be one if this is a
|
|
OMPI RTE program, or [possibly] multiple if this is ompi_info) */
|
|
|
|
mca_base_components_close(mca_pcm_base_output,
|
|
&mca_pcm_base_components_available, NULL);
|
|
|
|
/* All done */
|
|
|
|
return OMPI_SUCCESS;
|
|
}
|