root/ompi/mca/pml/example/pml_example_isend.c

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

DEFINITIONS

This source file includes following definitions.
  1. mca_pml_example_isend_init
  2. mca_pml_example_isend
  3. mca_pml_example_send

   1 /*
   2  * Copyright (c) 2004-2005 The University of Tennessee and The University
   3  *                         of Tennessee Research Foundation.  All rights
   4  *                         reserved.
   5  * $COPYRIGHT$
   6  *
   7  * Additional copyrights may follow
   8  *
   9  * $HEADER$
  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 

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