root/ompi/mca/vprotocol/example/vprotocol_example_probe.c

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

DEFINITIONS

This source file includes following definitions.
  1. mca_vprotocol_example_probe
  2. mca_vprotocol_example_iprobe

   1 /*
   2  * Copyright (c) 2004-2007 The Trustees of the University of Tennessee.
   3  *                         All rights reserved.
   4  * $COPYRIGHT$
   5  *
   6  * Additional copyrights may follow
   7  *
   8  * $HEADER$
   9  */
  10 
  11 #include "ompi_config.h"
  12 #include "../pml_v.h"
  13 #include "vprotocol_example.h"
  14 
  15 int mca_vprotocol_example_probe( int src, int tag,
  16                        struct ompi_communicator_t *comm,
  17                        ompi_status_public_t * status )
  18 {
  19   V_OUTPUT_VERBOSE(50, "mca_vprotocol_example_probe(%d, %d, %d)", src, tag, comm->c_contextid);
  20   return mca_pml_v.host_pml.pml_probe(src, tag, comm, status);
  21 }
  22 
  23 int mca_vprotocol_example_iprobe( int src, int tag,
  24                         struct ompi_communicator_t *comm,
  25                         int *matched, ompi_status_public_t * status )
  26 {
  27   V_OUTPUT_VERBOSE(60, "mca_vprotocol_example_iprobe(%d, %d, %d)", src, tag, comm->c_contextid);
  28   return mca_pml_v.host_pml.pml_iprobe(src, tag, comm, matched, status);
  29 }

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