2005-03-14 23:57:21 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-23 07:32:36 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
*/
|
2008-02-28 04:57:57 +03:00
|
|
|
#ifndef ORTE_UTIL_DASH_HOST_H
|
|
|
|
#define ORTE_UTIL_DASH_HOST_H
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "opal/class/opal_list.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
BEGIN_C_DECLS
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
ORTE_DECLSPEC int orte_util_add_dash_host_nodes(opal_list_t *nodes,
|
2008-03-06 01:12:27 +03:00
|
|
|
char ** host_argv);
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
ORTE_DECLSPEC int orte_util_filter_dash_host_nodes(opal_list_t *nodes,
|
2011-12-15 00:01:15 +04:00
|
|
|
char ** host_argv,
|
|
|
|
bool remove);
|
2008-02-28 04:57:57 +03:00
|
|
|
|
2010-03-08 12:54:49 +03:00
|
|
|
ORTE_DECLSPEC int orte_util_get_ordered_dash_host_list(opal_list_t *nodes,
|
|
|
|
char ** host_argv);
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
END_C_DECLS
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
#endif
|