OpenMPI  0.1.1
ras_types.h
1 /*
2  * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
3  * University Research and Technology
4  * Corporation. All rights reserved.
5  * Copyright (c) 2004-2006 The University of Tennessee and The University
6  * of Tennessee Research Foundation. All rights
7  * reserved.
8  * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
9  * University of Stuttgart. All rights reserved.
10  * Copyright (c) 2004-2005 The Regents of the University of California.
11  * All rights reserved.
12  * $COPYRIGHT$
13  *
14  * Additional copyrights may follow
15  *
16  * $HEADER$
17  */
18 
19 #ifndef ORTE_MCA_RAS_TYPES_H
20 #define ORTE_MCA_RAS_TYPES_H
21 
22 #include "orte_config.h"
23 #include "orte/types.h"
24 
25 #include "opal/class/opal_list.h"
26 
27 BEGIN_C_DECLS
28 
30  /** Base object */
32  /** String node name */
33  char *node_name;
34  /* the rank of this proc (default -1) */
35  orte_std_cntr_t rank;
36  /* cpu list as defined (if defined) in the hostfile */
37  char *cpu_list;
38  /* whther or not this process is allocated to a map */
39 };
40 
41 typedef struct orte_ras_proc_t orte_ras_proc_t;
42 
44 
45 
46 END_C_DECLS
47 
48 #endif
int32_t orte_std_cntr_t
Supported datatypes for messaging and storage operations.
Definition: types.h:34
opal_list_item_t super
Base object.
Definition: ras_types.h:31
The opal_list_t interface is used to provide a generic doubly-linked list container for Open MPI...
char * node_name
String node name.
Definition: ras_types.h:33
Definition: opal_list.h:98
Definition: ras_types.h:29
#define OBJ_CLASS_DECLARATION(NAME)
Declaration for class descriptor.
Definition: opal_object.h:236