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

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

DEFINITIONS

This source file includes following definitions.
  1. mca_pml_example_irecv_init
  2. mca_pml_example_irecv
  3. mca_pml_example_recv
  4. mca_pml_example_imrecv
  5. mca_pml_example_mrecv

   1 /*
   2  * Copyright (c) 2004-2005 The University of Tennessee and The University
   3  *                         of Tennessee Research Foundation.  All rights
   4  *                         reserved.
   5  * Copyright (c) 2011      Sandia National Laboratories. All rights reserved.
   6  * $COPYRIGHT$
   7  *
   8  * Additional copyrights may follow
   9  *
  10  * $HEADER$
  11  */
  12 
  13 #include "ompi_config.h"
  14 #include "pml_example.h"
  15 #include "ompi/request/request.h"
  16 
  17 int mca_pml_example_irecv_init( void *addr,
  18                             size_t count,
  19                             ompi_datatype_t * datatype,
  20                             int src,
  21                             int tag,
  22                             struct ompi_communicator_t *comm,
  23                             struct ompi_request_t **request )
  24 {
  25     return OMPI_SUCCESS;
  26 }
  27 
  28 int mca_pml_example_irecv( void *addr,
  29                        size_t count,
  30                        ompi_datatype_t * datatype,
  31                        int src,
  32                        int tag,
  33                        struct ompi_communicator_t *comm,
  34                        struct ompi_request_t **request )
  35 {
  36     return OMPI_SUCCESS;
  37 }
  38 
  39 
  40 int mca_pml_example_recv( void *addr,
  41                       size_t count,
  42                       ompi_datatype_t * datatype,
  43                       int src,
  44                       int tag,
  45                       struct ompi_communicator_t *comm,
  46                       ompi_status_public_t * status )
  47 {
  48     return OMPI_SUCCESS;
  49 }
  50 
  51 int mca_pml_example_imrecv(void *buf,
  52                            size_t count,
  53                            ompi_datatype_t *datatype,
  54                            struct ompi_message_t **message,
  55                            struct ompi_request_t **request)
  56 {
  57     return OMPI_SUCCESS;
  58 }
  59 
  60 int mca_pml_example_mrecv(void *buf,
  61                           size_t count,
  62                           ompi_datatype_t *datatype,
  63                           struct ompi_message_t **message,
  64                           ompi_status_public_t* status)
  65 {
  66     return OMPI_SUCCESS;
  67 }

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