root/orte/mca/state/base/base.h

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

INCLUDED FROM


   1 /*
   2  * Copyright (c) 2011-2013 Los Alamos National Security, LLC.
   3  *                         All rights reserved.
   4  * Copyright (c) 2018      Intel, Inc.  All rights reserved.
   5  * $COPYRIGHT$
   6  *
   7  * Additional copyrights may follow
   8  *
   9  * $HEADER$
  10  */
  11 /** @file:
  12  */
  13 
  14 #ifndef ORTE_MCA_STATE_BASE_H
  15 #define ORTE_MCA_STATE_BASE_H
  16 
  17 /*
  18  * includes
  19  */
  20 #include "orte_config.h"
  21 #include "orte/constants.h"
  22 
  23 #include "opal/class/opal_list.h"
  24 #include "opal/util/printf.h"
  25 
  26 #include "orte/mca/mca.h"
  27 #include "orte/mca/state/state.h"
  28 
  29 
  30 BEGIN_C_DECLS
  31 
  32 /* select a component */
  33 ORTE_DECLSPEC    int orte_state_base_select(void);
  34 
  35 /* debug tools */
  36 ORTE_DECLSPEC void orte_state_base_print_job_state_machine(void);
  37 
  38 ORTE_DECLSPEC void orte_state_base_print_proc_state_machine(void);
  39 
  40 END_C_DECLS
  41 
  42 #endif

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