1 /* -*- Mode: C; c-basic-offset:4 ; -*- */ 2 /* 3 * Copyright (c) 2009 Sun Microsystems, Inc. All rights reserved. 4 * $COPYRIGHT$ 5 * 6 * Additional copyrights may follow 7 * 8 * $HEADER$ 9 */ 10 11 #ifndef OMPI_GROUP_DBG_H 12 #define OMPI_GROUP_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 /* Some definitions for the flags */ 21 #define OMPI_GROUP_ISFREED 0x00000001 22 #define OMPI_GROUP_INTRINSIC 0x00000002 23 24 #define OMPI_GROUP_DENSE 0x00000004 25 #define OMPI_GROUP_SPORADIC 0x00000008 26 #define OMPI_GROUP_STRIDED 0x00000010 27 #define OMPI_GROUP_BITMAP 0x00000020 28 29 #endif /* OMPI_GROUP_DBG_H */