1 /* -*- Mode: C; c-basic-offset:4 ; -*- */ 2 /* 3 * Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved. 4 * Copyright (c) 2011 Sandia National Laboratories. All rights reserved. 5 * $COPYRIGHT$ 6 * 7 * Additional copyrights may follow 8 * 9 * $HEADER$ 10 */ 11 #ifndef MCA_PML_BASE_REQUEST_DBG_H 12 #define MCA_PML_BASE_REQUEST_DBG_H 13 14 /* 15 * This file contains definitions used by both OMPI and debugger plugins. 16 * For more information on why we do this see the Notice to developers 17 * comment at the top of the ompi_msgq_dll.c file. 18 */ 19 20 /** 21 * Type of request. 22 */ 23 typedef enum { 24 MCA_PML_REQUEST_NULL, 25 MCA_PML_REQUEST_SEND, 26 MCA_PML_REQUEST_RECV, 27 MCA_PML_REQUEST_IPROBE, 28 MCA_PML_REQUEST_PROBE, 29 MCA_PML_REQUEST_IMPROBE, 30 MCA_PML_REQUEST_MPROBE 31 } mca_pml_base_request_type_t; 32 33 #endif /* MCA_PML_BASE_REQUEST_DBG_H */