1 /* 2 * Copyright (c) 2004-2009 The Trustees of Indiana University and Indiana 3 * University Research and Technology 4 * Corporation. All rights reserved. 5 * Copyright (c) 2004-2005 The University of Tennessee and The University 6 * of Tennessee Research Foundation. All rights 7 * reserved. 8 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, 9 * University of Stuttgart. All rights reserved. 10 * Copyright (c) 2004-2005 The Regents of the University of California. 11 * All rights reserved. 12 * Copyright (c) 2007-2009 Cisco Systems, Inc. All rights reserved. 13 * Copyright (c) 2013 Los Alamos National Security, LLC. 14 * All rights reserved. 15 * $COPYRIGHT$ 16 * 17 * Additional copyrights may follow 18 * 19 * $HEADER$ 20 */ 21 22 #ifndef OMPI_INFO_TOOL_H 23 #define OMPI_INFO_TOOL_H 24 #include "ompi_config.h" 25 26 #include "opal/class/opal_list.h" 27 #include "opal/class/opal_pointer_array.h" 28 #include "opal/util/cmd_line.h" 29 #include "opal/mca/mca.h" 30 31 BEGIN_C_DECLS 32 33 /* 34 * Globals 35 */ 36 37 extern const char *ompi_info_type_ompi; 38 extern const char *ompi_info_type_base; 39 40 void ompi_info_do_config(bool want_all); 41 42 END_C_DECLS 43 44 #endif /* OMPI_INFO_H */