This source file includes following definitions.
- mca_pml_monitoring_iprobe
- mca_pml_monitoring_probe
- mca_pml_monitoring_improbe
- mca_pml_monitoring_mprobe
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 
  12 
  13 #include <ompi_config.h>
  14 #include "pml_monitoring.h"
  15 
  16 
  17 
  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