root/opal/mca/reachable/base/base.h

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

INCLUDED FROM


   1 /*
   2  * Copyright (c) 2014      Intel, Inc. All rights reserved.
   3  * $COPYRIGHT$
   4  *
   5  * Additional copyrights may follow
   6  *
   7  * $HEADER$
   8  */
   9 /** @file:
  10  */
  11 
  12 #ifndef MCA_REACHABLE_BASE_H
  13 #define MCA_REACHABLE_BASE_H
  14 
  15 #include "opal_config.h"
  16 #include "opal/types.h"
  17 
  18 #include "opal/mca/mca.h"
  19 #include "opal/mca/base/mca_base_framework.h"
  20 
  21 #include "opal/mca/reachable/reachable.h"
  22 
  23 BEGIN_C_DECLS
  24 
  25 OPAL_DECLSPEC extern mca_base_framework_t opal_reachable_base_framework;
  26 
  27 /**
  28  * Select a reachable module
  29  */
  30 OPAL_DECLSPEC int opal_reachable_base_select(void);
  31 
  32 OPAL_DECLSPEC opal_reachable_t * opal_reachable_allocate(unsigned int num_local,
  33                                                          unsigned int num_remote);
  34 
  35 
  36 END_C_DECLS
  37 
  38 #endif

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