2017-01-12 10:09:41 -07:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
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.
|
2017-01-12 10:09:41 -07:00
|
|
|
* Copyright (c) 2017 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2017 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_HNP_H
|
|
|
|
#define ORTE_ESS_HNP_H
|
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Module open / close
|
2005-03-14 20:57:21 +00:00
|
|
|
*/
|
2017-01-12 10:09:41 -07:00
|
|
|
typedef struct {
|
|
|
|
opal_list_item_t super;
|
|
|
|
char *signame;
|
|
|
|
int signal;
|
|
|
|
} ess_hnp_signal_t;
|
|
|
|
OBJ_CLASS_DECLARATION(ess_hnp_signal_t);
|
2005-03-14 20:57:21 +00:00
|
|
|
|
2017-01-12 10:09:41 -07:00
|
|
|
typedef struct {
|
|
|
|
orte_ess_base_component_t base;
|
|
|
|
opal_list_t signals;
|
|
|
|
} orte_ess_hnp_component_t;
|
2005-03-14 20:57:21 +00:00
|
|
|
|
2017-01-12 10:09:41 -07:00
|
|
|
ORTE_MODULE_DECLSPEC extern orte_ess_hnp_component_t mca_ess_hnp_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_HNP_H */
|