2005-05-12 21:44:23 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* Copyright (c) 2004-2005 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.
|
2005-05-12 21:44:23 +00:00
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ORTEPROBE_H
|
|
|
|
#define ORTEPROBE_H
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
2005-07-03 16:22:16 +00:00
|
|
|
#include "opal/class/opal_list.h"
|
2005-07-03 22:45:48 +00:00
|
|
|
#include "opal/threads/mutex.h"
|
|
|
|
#include "opal/threads/condition.h"
|
2005-05-12 21:44:23 +00:00
|
|
|
|
2005-07-04 00:13:44 +00:00
|
|
|
#include "opal/util/cmd_line.h"
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "orte/tools/orted/orted.h"
|
2005-05-12 21:44:23 +00:00
|
|
|
|
2006-08-23 02:35:00 +00:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-05-12 21:44:23 +00:00
|
|
|
/*
|
|
|
|
* Globals
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
bool help;
|
2005-08-10 20:01:25 +00:00
|
|
|
bool verbose;
|
2005-05-12 21:44:23 +00:00
|
|
|
bool debug;
|
|
|
|
char* name_string;
|
|
|
|
char* requestor_string;
|
2005-07-03 22:45:48 +00:00
|
|
|
opal_mutex_t mutex;
|
|
|
|
opal_condition_t condition;
|
2005-05-12 21:44:23 +00:00
|
|
|
bool exit_condition;
|
|
|
|
} orteprobe_globals_t;
|
|
|
|
|
|
|
|
extern orteprobe_globals_t orteprobe_globals;
|
|
|
|
|
2006-08-23 02:35:00 +00:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-05-12 21:44:23 +00:00
|
|
|
#endif /* ORTEPROBE_H */
|