1 
   2 
   3 
   4 
   5 
   6 
   7 
   8 
   9 
  10 
  11 
  12 #ifndef MCA_REACHABLE_WEIGHTED_H
  13 #define MCA_REACHABLE_WEIGHTED_H
  14 
  15 #include "opal_config.h"
  16 
  17 #ifdef HAVE_SYS_SOCKET_H
  18 #include <sys/socket.h>
  19 #endif
  20 #ifdef HAVE_SYS_UN_H
  21 #include <sys/un.h>
  22 #endif
  23 
  24 #include "opal/mca/reachable/reachable.h"
  25 #include "opal/mca/mca.h"
  26 #include "opal/mca/event/event.h"
  27 #include "opal/util/proc.h"
  28 
  29 #include "opal/mca/pmix/base/base.h"
  30 
  31 BEGIN_C_DECLS
  32 
  33 typedef struct {
  34     opal_reachable_base_component_t super;
  35 } opal_reachable_weighted_component_t;
  36 
  37 OPAL_DECLSPEC extern opal_reachable_weighted_component_t mca_reachable_weighted_component;
  38 
  39 OPAL_DECLSPEC extern const opal_reachable_base_module_t opal_reachable_weighted_module;
  40 
  41 
  42 END_C_DECLS
  43 
  44 #endif