OpenMPI  0.1.1
iof_types.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
3  * University Research and Technology
4  * Corporation. All rights reserved.
5  * Copyright (c) 2004-2005 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 (c) 2007-2008 Cisco Systems, Inc. All rights reserved.
13  * $COPYRIGHT$
14  *
15  * Additional copyrights may follow
16  *
17  * $HEADER$
18  */
19 /**
20  * @file
21  */
22 
23 #ifndef ORTE_IOF_TYPES_H
24 #define ORTE_IOF_TYPES_H
25 
26 #include "orte_config.h"
27 #include "orte/types.h"
28 
29 
30 BEGIN_C_DECLS
31 
32 /* Predefined tag values */
33 typedef uint8_t orte_iof_tag_t;
34 #define ORTE_IOF_TAG_T OPAL_UINT8
35 
36 #define ORTE_IOF_STDIN 0x01
37 #define ORTE_IOF_STDOUT 0x02
38 #define ORTE_IOF_STDERR 0x04
39 #define ORTE_IOF_STDDIAG 0x08
40 #define ORTE_IOF_STDOUTALL 0x0e
41 
42 /* flow control flags */
43 #define ORTE_IOF_XON 0x10
44 #define ORTE_IOF_XOFF 0x20
45 /* tool requests */
46 #define ORTE_IOF_PULL 0x40
47 #define ORTE_IOF_CLOSE 0x80
48 
49 END_C_DECLS
50 
51 #endif /* ORTE_IOF_TYPES_H */