root/ompi/mca/vprotocol/pessimist/vprotocol_pessimist_comm.c

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

DEFINITIONS

This source file includes following definitions.
  1. mca_vprotocol_pessimist_add_comm
  2. mca_vprotocol_pessimist_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 "ompi_config.h"
  12 #include "vprotocol_pessimist.h"
  13 
  14 int mca_vprotocol_pessimist_add_comm(struct ompi_communicator_t* comm)
  15 {
  16   return mca_pml_v.host_pml.pml_add_comm(comm);
  17 }
  18 
  19 int mca_vprotocol_pessimist_del_comm(struct ompi_communicator_t* comm)
  20 {
  21   return mca_pml_v.host_pml.pml_del_comm(comm);
  22 }

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