This source file includes following definitions.
- mca_pml_example_isend_init
- mca_pml_example_isend
- mca_pml_example_send
   1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 
  12 #include "ompi_config.h"
  13 #include "pml_example.h"
  14 
  15 int mca_pml_example_isend_init( void* buf,
  16                             size_t count,
  17                             ompi_datatype_t* datatype,
  18                             int dst,
  19                             int tag,
  20                             mca_pml_base_send_mode_t sendmode,
  21                             ompi_communicator_t* comm,
  22                             ompi_request_t** request )
  23 {
  24     return OMPI_SUCCESS;
  25 }
  26 
  27 
  28 int mca_pml_example_isend( void* buf,
  29                        size_t count,
  30                        ompi_datatype_t* datatype,
  31                        int dst,
  32                        int tag,
  33                        mca_pml_base_send_mode_t sendmode,
  34                        ompi_communicator_t* comm,
  35                        ompi_request_t** request )
  36 {
  37     return OMPI_SUCCESS;
  38 }
  39 
  40 int mca_pml_example_send( void *buf,
  41                       size_t count,
  42                       ompi_datatype_t* datatype,
  43                       int dst,
  44                       int tag,
  45                       mca_pml_base_send_mode_t sendmode,
  46                       ompi_communicator_t* comm )
  47 {
  48     return OMPI_SUCCESS;
  49 }
  50