2005-03-14 20:57:21 +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.
|
2006-08-23 03:32:36 +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.
|
2015-10-31 19:00:46 -07:00
|
|
|
* Copyright (c) 2014-2015 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$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
*/
|
2008-02-28 01:57:57 +00:00
|
|
|
#ifndef ORTE_UTIL_DASH_HOST_H
|
|
|
|
#define ORTE_UTIL_DASH_HOST_H
|
2005-03-14 20:57:21 +00:00
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
#include "opal/class/opal_list.h"
|
2005-03-14 20:57:21 +00:00
|
|
|
|
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
BEGIN_C_DECLS
|
2005-03-14 20:57:21 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
ORTE_DECLSPEC int orte_util_add_dash_host_nodes(opal_list_t *nodes,
|
2015-10-31 19:00:46 -07:00
|
|
|
char *hosts,
|
|
|
|
bool allocating);
|
2015-06-23 20:59:57 -07:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
ORTE_DECLSPEC int orte_util_filter_dash_host_nodes(opal_list_t *nodes,
|
2014-06-01 16:14:10 +00:00
|
|
|
char *hosts,
|
2011-12-14 20:01:15 +00:00
|
|
|
bool remove);
|
2008-02-28 01:57:57 +00:00
|
|
|
|
2010-03-08 09:54:49 +00:00
|
|
|
ORTE_DECLSPEC int orte_util_get_ordered_dash_host_list(opal_list_t *nodes,
|
2014-06-01 16:14:10 +00:00
|
|
|
char *hosts);
|
2010-03-08 09:54:49 +00:00
|
|
|
|
2008-02-28 01:57:57 +00:00
|
|
|
END_C_DECLS
|
2005-03-14 20:57:21 +00:00
|
|
|
|
|
|
|
#endif
|