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

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

DEFINITIONS

This source file includes following definitions.
  1. mca_vprotocol_example_add_comm
  2. mca_vprotocol_example_del_comm

   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 "../pml_v.h"
  12 #include "vprotocol_example.h"
  13 
  14 int mca_vprotocol_example_add_comm(struct ompi_communicator_t* comm)
  15 {
  16   V_OUTPUT_VERBOSE(30, "vprotocol_example_add_comm(%d)", comm->c_contextid);
  17   return mca_pml_v.host_pml.pml_add_comm(comm);
  18 }
  19 
  20 int mca_vprotocol_example_del_comm(struct ompi_communicator_t* comm)
  21 {
  22   V_OUTPUT_VERBOSE(30, "vprotocol_example_del_comm(%d)", comm->c_contextid);
  23   return mca_pml_v.host_pml.pml_del_comm(comm);
  24 }

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