add missing #include of opal/util/output.h
This commit was SVN r27599.
Этот коммит содержится в:
родитель
cbe6d6548a
Коммит
87e5f97400
@ -36,15 +36,9 @@ int mca_allocator_base_close(void)
|
|||||||
/* Close all remaining available modules (may be one if this is a
|
/* Close all remaining available modules (may be one if this is a
|
||||||
OMPI RTE program, or [possibly] multiple if this is ompi_info) */
|
OMPI RTE program, or [possibly] multiple if this is ompi_info) */
|
||||||
|
|
||||||
mca_base_components_close(mca_allocator_base_output,
|
mca_base_components_close(0, &mca_allocator_base_components, NULL);
|
||||||
&mca_allocator_base_components, NULL);
|
|
||||||
|
|
||||||
/* Close the framework output */
|
|
||||||
opal_output_close (mca_allocator_base_output);
|
|
||||||
mca_allocator_base_output = -1;
|
|
||||||
|
|
||||||
/* All done */
|
/* All done */
|
||||||
|
|
||||||
return OMPI_SUCCESS;
|
return OMPI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -40,7 +40,6 @@
|
|||||||
* Global variables
|
* Global variables
|
||||||
*/
|
*/
|
||||||
opal_list_t mca_allocator_base_components;
|
opal_list_t mca_allocator_base_components;
|
||||||
int mca_allocator_base_output = -1;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function for finding and opening either all MCA components, or the one
|
* Function for finding and opening either all MCA components, or the one
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include "opal/mca/mca.h"
|
#include "opal/mca/mca.h"
|
||||||
#include "opal/mca/base/base.h"
|
#include "opal/mca/base/base.h"
|
||||||
#include "ompi/mca/coll/base/base.h"
|
#include "ompi/mca/coll/base/base.h"
|
||||||
|
#include "opal/util/output.h"
|
||||||
|
|
||||||
int mca_coll_base_close(void)
|
int mca_coll_base_close(void)
|
||||||
{
|
{
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include "ompi/constants.h"
|
#include "ompi/constants.h"
|
||||||
#include "ompi/mca/op/op.h"
|
#include "ompi/mca/op/op.h"
|
||||||
#include "ompi/mca/op/base/base.h"
|
#include "ompi/mca/op/base/base.h"
|
||||||
|
#include "opal/util/output.h"
|
||||||
|
|
||||||
int ompi_op_base_close(void)
|
int ompi_op_base_close(void)
|
||||||
{
|
{
|
||||||
|
@ -23,6 +23,7 @@
|
|||||||
|
|
||||||
#include "ompi/mca/pubsub/pubsub.h"
|
#include "ompi/mca/pubsub/pubsub.h"
|
||||||
#include "ompi/mca/pubsub/base/base.h"
|
#include "ompi/mca/pubsub/base/base.h"
|
||||||
|
#include "opal/util/output.h"
|
||||||
|
|
||||||
int ompi_pubsub_base_close(void)
|
int ompi_pubsub_base_close(void)
|
||||||
{
|
{
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
#include "opal/mca/base/base.h"
|
#include "opal/mca/base/base.h"
|
||||||
#include "opal/mca/hwloc/hwloc.h"
|
#include "opal/mca/hwloc/hwloc.h"
|
||||||
#include "opal/mca/hwloc/base/base.h"
|
#include "opal/mca/hwloc/base/base.h"
|
||||||
|
#include "opal/util/output.h"
|
||||||
|
|
||||||
int opal_hwloc_base_close(void)
|
int opal_hwloc_base_close(void)
|
||||||
{
|
{
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
#include "opal/mca/base/base.h"
|
#include "opal/mca/base/base.h"
|
||||||
#include "opal/mca/memchecker/base/base.h"
|
#include "opal/mca/memchecker/base/base.h"
|
||||||
#include "opal/mca/memchecker/memchecker.h"
|
#include "opal/mca/memchecker/memchecker.h"
|
||||||
|
#include "opal/util/output.h"
|
||||||
|
|
||||||
int opal_memchecker_base_close(void)
|
int opal_memchecker_base_close(void)
|
||||||
{
|
{
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
#include "opal/mca/base/base.h"
|
#include "opal/mca/base/base.h"
|
||||||
#include "opal/mca/pstat/pstat.h"
|
#include "opal/mca/pstat/pstat.h"
|
||||||
#include "opal/mca/pstat/base/base.h"
|
#include "opal/mca/pstat/base/base.h"
|
||||||
|
#include "opal/util/output.h"
|
||||||
|
|
||||||
int opal_pstat_base_close(void)
|
int opal_pstat_base_close(void)
|
||||||
{
|
{
|
||||||
|
@ -26,6 +26,7 @@
|
|||||||
#include "opal/mca/base/base.h"
|
#include "opal/mca/base/base.h"
|
||||||
#include "opal/mca/shmem/shmem.h"
|
#include "opal/mca/shmem/shmem.h"
|
||||||
#include "opal/mca/shmem/base/base.h"
|
#include "opal/mca/shmem/base/base.h"
|
||||||
|
#include "opal/util/output.h"
|
||||||
|
|
||||||
/* ////////////////////////////////////////////////////////////////////////// */
|
/* ////////////////////////////////////////////////////////////////////////// */
|
||||||
int
|
int
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user