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

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

DEFINITIONS

This source file includes following definitions.
  1. mca_pml_example_iprobe
  2. mca_pml_example_probe
  3. mca_pml_example_improbe
  4. mca_pml_example_mprobe

   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 
  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 }

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