2008-06-09 18:53:58 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2006 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.
|
2010-06-09 00:16:07 +04:00
|
|
|
* Copyright (c) 2008-2010 Cisco Systems, Inc. All rights reserved.
|
2008-06-09 18:53:58 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file:
|
|
|
|
*
|
|
|
|
* Populates global structure with system-specific information.
|
|
|
|
*
|
|
|
|
* Notes: add limits.h, compute size of integer and other types via sizeof(type)*CHAR_BIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-06-10 00:34:14 +04:00
|
|
|
#ifndef _ORTE_SHOW_HELP_H_
|
|
|
|
#define _ORTE_SHOW_HELP_H_
|
2008-06-09 18:53:58 +04:00
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "orte/types.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include "orte/mca/rml/rml_types.h"
|
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the output stream system and opens a default
|
|
|
|
* "verbose" stream.
|
|
|
|
*
|
|
|
|
* @retval success Upon success.
|
|
|
|
* @retval error Upon failure.
|
|
|
|
*
|
|
|
|
* This should be the first function invoked in the output
|
|
|
|
* subsystem. After this call, the default "verbose" stream is open
|
|
|
|
* and can be written to via calls to orte_output_verbose() and
|
|
|
|
* orte_output_error().
|
|
|
|
*
|
|
|
|
* By definition, the default verbose stream has a handle ID of 0,
|
|
|
|
* and has a verbose level of 0.
|
|
|
|
*/
|
|
|
|
ORTE_DECLSPEC int orte_show_help_init(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shut down the output stream system.
|
|
|
|
*
|
|
|
|
* Shut down the output stream system, including the default verbose
|
|
|
|
* stream.
|
|
|
|
*/
|
|
|
|
ORTE_DECLSPEC void orte_show_help_finalize(void);
|
|
|
|
|
|
|
|
/**
|
2010-06-09 00:16:07 +04:00
|
|
|
* Show help.
|
2008-06-09 18:53:58 +04:00
|
|
|
*
|
2010-06-09 00:16:07 +04:00
|
|
|
* Sends show help messages to the HNP if on a backend node. Note
|
|
|
|
* that aggregation is not currently supported on HNP-less systems
|
|
|
|
* (e.g., cray).
|
2008-06-09 18:53:58 +04:00
|
|
|
*/
|
|
|
|
ORTE_DECLSPEC int orte_show_help(const char *filename, const char *topic,
|
|
|
|
bool want_error_header, ...);
|
|
|
|
|
2010-08-24 23:12:57 +04:00
|
|
|
/**
|
|
|
|
* Exactly the same as orte_show_help, but pass in a rendered string,
|
|
|
|
* rather than a varargs list which must be rendered.
|
|
|
|
*/
|
|
|
|
ORTE_DECLSPEC int orte_show_help_norender(const char *filename,
|
|
|
|
const char *topic,
|
|
|
|
bool want_error_header,
|
|
|
|
const char *output);
|
|
|
|
|
2010-06-09 00:16:07 +04:00
|
|
|
/**
|
|
|
|
* Pretend that this message has already been shown.
|
|
|
|
*
|
|
|
|
* Sends a control message to the HNP that will effecitvely suppress
|
|
|
|
* this message from being shown. Primitive *-wildcarding is
|
|
|
|
* possible.
|
|
|
|
*
|
|
|
|
* Not currently supported on HNP-less systems (e.g., cray).
|
|
|
|
*/
|
|
|
|
ORTE_DECLSPEC int orte_show_help_suppress(const char *filename,
|
|
|
|
const char *topic);
|
|
|
|
|
2008-06-18 07:15:56 +04:00
|
|
|
#if !ORTE_DISABLE_FULL_SUPPORT
|
2008-06-09 18:53:58 +04:00
|
|
|
|
|
|
|
ORTE_DECLSPEC void orte_show_help_recv(int status, orte_process_name_t* sender,
|
|
|
|
opal_buffer_t *buffer, orte_rml_tag_t tag,
|
|
|
|
void* cbdata);
|
|
|
|
|
|
|
|
#endif /* ORTE_DISABLE_FULL_SUPPORT */
|
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
#endif
|