root/ompi/mca/pml/monitoring/pml_monitoring_comm.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. mca_pml_monitoring_add_comm
  2. mca_pml_monitoring_del_comm

   1 /*
   2  * Copyright (c) 2013-2015 The University of Tennessee and The University
   3  *                         of Tennessee Research Foundation.  All rights
   4  *                         reserved.
   5  * Copyright (c) 2013-2017 Inria.  All rights reserved.
   6  * $COPYRIGHT$
   7  *
   8  * Additional copyrights may follow
   9  *
  10  * $HEADER$
  11  */
  12 
  13 #include <ompi_config.h>
  14 #include "pml_monitoring.h"
  15 
  16 int mca_pml_monitoring_add_comm(struct ompi_communicator_t* comm)
  17 {
  18     return pml_selected_module.pml_add_comm(comm);
  19 }
  20 
  21 int mca_pml_monitoring_del_comm(struct ompi_communicator_t* comm)
  22 {
  23     mca_common_monitoring_coll_cache_name(comm);
  24     return pml_selected_module.pml_del_comm(comm);
  25 }

/* [<][>][^][v][top][bottom][index][help] */