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.
|
2005-03-14 20:57:21 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* 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.
|
2005-03-14 20:57:21 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
* Resource Mapping
|
|
|
|
*/
|
|
|
|
#ifndef ORTE_RMAPS_RR_H
|
|
|
|
#define ORTE_RMAPS_RR_H
|
|
|
|
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "orte/mca/rmaps/rmaps.h"
|
2005-03-14 20:57:21 +00:00
|
|
|
|
2008-05-08 05:09:13 +00:00
|
|
|
BEGIN_C_DECLS
|
2005-03-14 20:57:21 +00:00
|
|
|
|
2008-05-08 05:09:13 +00:00
|
|
|
ORTE_MODULE_DECLSPEC extern orte_rmaps_base_component_t mca_rmaps_round_robin_component;
|
2006-08-23 03:32:36 +00:00
|
|
|
extern orte_rmaps_base_module_t orte_rmaps_round_robin_module;
|
2005-03-14 20:57:21 +00:00
|
|
|
|
|
|
|
|
2008-05-08 05:09:13 +00:00
|
|
|
END_C_DECLS
|
2005-03-14 20:57:21 +00:00
|
|
|
|
|
|
|
#endif
|