2005-03-14 20:57:21 +00:00
|
|
|
/*
|
2008-05-06 18:08:45 +00:00
|
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
|
2005-11-05 19:57:48 +00:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2008-02-28 01:57:57 +00:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 19:57:48 +00:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2015-06-23 20:59:57 -07:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2005-03-14 20:57:21 +00:00
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2016-02-25 11:05:38 -06:00
|
|
|
* Copyright (c) 2016 Intel, Inc. All rights reserved.
|
2005-03-14 20:57:21 +00:00
|
|
|
* $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2005-03-14 20:57:21 +00:00
|
|
|
* Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2005-03-14 20:57:21 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
#ifndef ORTE_ESS_SINGLETON_H
|
|
|
|
#define ORTE_ESS_SINGLETON_H
|
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
2005-03-14 20:57:21 +00:00
|
|
|
|
2016-02-25 11:05:38 -06:00
|
|
|
typedef struct {
|
|
|
|
orte_ess_base_component_t super;
|
|
|
|
char *server_uri;
|
|
|
|
bool isolated;
|
|
|
|
} orte_ess_singleton_component_t;
|
|
|
|
ORTE_MODULE_DECLSPEC extern orte_ess_singleton_component_t mca_ess_singleton_component;
|
2005-03-14 20:57:21 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
END_C_DECLS
|
2007-01-02 16:16:50 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
#endif /* ORTE_ESS_SINGLETON_H */
|