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

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

DEFINITIONS

This source file includes following definitions.
  1. mca_vprotocol_pessimist_add_procs
  2. mca_vprotocol_pessimist_del_procs

   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_procs(struct ompi_proc_t **procs, size_t nprocs)
  15 {
  16   /* TODO: for each proc, retrieve post send of sender based request, post recieve of list
  17       block any other communications until we are up. To be determined how i manage to send (or resend) data to failed nodes
  18   */
  19   return mca_pml_v.host_pml.pml_add_procs(procs, nprocs);
  20 }
  21 
  22 int mca_vprotocol_pessimist_del_procs(struct ompi_proc_t **procs, size_t nprocs)
  23 {
  24   /* TODO: I don't know, now... */
  25   return mca_pml_v.host_pml.pml_del_procs(procs, nprocs);
  26 }

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