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

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

DEFINITIONS

This source file includes following definitions.
  1. mca_pml_monitoring_iprobe
  2. mca_pml_monitoring_probe
  3. mca_pml_monitoring_improbe
  4. mca_pml_monitoring_mprobe

   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 
  17 /* EJ: nothing to do here */
  18 
  19 int mca_pml_monitoring_iprobe( int dst,
  20                                int tag,
  21                                struct ompi_communicator_t* comm,
  22                                int *matched,
  23                                ompi_status_public_t* status )
  24 {
  25     return pml_selected_module.pml_iprobe(dst, tag, comm,
  26                                           matched, status);
  27 }
  28 
  29 int mca_pml_monitoring_probe( int dst,
  30                               int tag,
  31                               struct ompi_communicator_t* comm,
  32                               ompi_status_public_t* status )
  33 {
  34     return pml_selected_module.pml_probe(dst, tag, comm, status);
  35 }
  36 
  37 int mca_pml_monitoring_improbe(int dst,
  38                                int tag,
  39                                struct ompi_communicator_t* comm,
  40                                int *matched,
  41                                struct ompi_message_t **message,
  42                                ompi_status_public_t* status)
  43 {
  44     return pml_selected_module.pml_improbe(dst, tag, comm,
  45                                            matched, message, status);
  46 }
  47 
  48 
  49 int mca_pml_monitoring_mprobe(int dst,
  50                               int tag,
  51                               struct ompi_communicator_t* comm,
  52                               struct ompi_message_t **message,
  53                               ompi_status_public_t* status)
  54 {
  55     return pml_selected_module.pml_mprobe(dst, tag, comm, message, status);
  56 }
  57 

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