2009-07-01 01:41:28 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2009 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2007-2009 Cisco Systems, Inc. All rights reserved.
|
2013-03-28 01:17:31 +04:00
|
|
|
* Copyright (c) 2013 Los Alamos National Security, LLC.
|
|
|
|
* All rights reserved.
|
2009-07-01 01:41:28 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2009-07-01 02:56:25 +04:00
|
|
|
#ifndef OMPI_INFO_TOOL_H
|
|
|
|
#define OMPI_INFO_TOOL_H
|
2009-07-01 01:41:28 +04:00
|
|
|
#include "ompi_config.h"
|
2004-01-19 20:44:47 +03:00
|
|
|
|
2005-07-03 20:22:16 +04:00
|
|
|
#include "opal/class/opal_list.h"
|
2009-07-01 01:41:28 +04:00
|
|
|
#include "opal/class/opal_pointer_array.h"
|
2005-07-04 04:13:44 +04:00
|
|
|
#include "opal/util/cmd_line.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/mca.h"
|
2004-01-19 20:44:47 +03:00
|
|
|
|
2009-07-01 01:41:28 +04:00
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Globals
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern const char *ompi_info_type_ompi;
|
|
|
|
extern const char *ompi_info_type_base;
|
|
|
|
|
|
|
|
void ompi_info_do_config(bool want_all);
|
|
|
|
|
|
|
|
END_C_DECLS
|
2004-01-19 20:44:47 +03:00
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#endif /* OMPI_INFO_H */
|