This source file includes following definitions.
- mca_pml_example_iprobe
- mca_pml_example_probe
- mca_pml_example_improbe
- mca_pml_example_mprobe
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 
  12 
  13 #include "ompi_config.h"
  14 #include "pml_example.h"
  15 
  16 int mca_pml_example_iprobe( int src, int tag,
  17                         struct ompi_communicator_t *comm,
  18                         int *matched, ompi_status_public_t * status )
  19 {
  20     return OMPI_SUCCESS;
  21 }
  22 
  23 int mca_pml_example_probe( int src, int tag,
  24                        struct ompi_communicator_t *comm,
  25                        ompi_status_public_t * status )
  26 {
  27     return OMPI_SUCCESS;
  28 }
  29 
  30 int mca_pml_example_improbe(int dst,
  31                             int tag,
  32                             struct ompi_communicator_t* comm,
  33                             int *matched,
  34                             struct ompi_message_t **message,
  35                             ompi_status_public_t* status)
  36 {
  37     return OMPI_SUCCESS;
  38 }
  39 
  40 int mca_pml_example_mprobe(int dst,
  41                            int tag,
  42                            struct ompi_communicator_t* comm,
  43                            struct ompi_message_t **message,
  44                            ompi_status_public_t* status)
  45 {
  46     return OMPI_SUCCESS;
  47 }