root/ompi/mca/pml/pml_constants.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
   2 /*
   3  * Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
   4  *                         University Research and Technology
   5  *                         Corporation.  All rights reserved.
   6  * Copyright (c) 2004-2005 The University of Tennessee and The University
   7  *                         of Tennessee Research Foundation.  All rights
   8  *                         reserved.
   9  * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
  10  *                         University of Stuttgart.  All rights reserved.
  11  * Copyright (c) 2004-2006 The Regents of the University of California.
  12  *                         All rights reserved.
  13  * Copyright (c) 2006-2015 Los Alamos National Security, LLC.  All rights
  14  *                         reserved.
  15  * Copyright (c) 2011      Sandia National Laboratories. All rights reserved.
  16  * $COPYRIGHT$
  17  *
  18  * Additional copyrights may follow
  19  *
  20  * $HEADER$
  21  */
  22 
  23 #ifndef MCA_PML_CONSTANTS_H
  24 #define MCA_PML_CONSTANTS_H
  25 
  26 #include "ompi_config.h"
  27 #include "ompi/mca/mca.h"
  28 #include "mpi.h" /* needed for MPI_ANY_TAG */
  29 
  30 typedef enum {
  31     MCA_PML_BASE_SEND_SYNCHRONOUS,
  32     MCA_PML_BASE_SEND_COMPLETE,
  33     MCA_PML_BASE_SEND_BUFFERED,
  34     MCA_PML_BASE_SEND_READY,
  35     MCA_PML_BASE_SEND_STANDARD,
  36     MCA_PML_BASE_SEND_SIZE
  37 } mca_pml_base_send_mode_t;
  38 
  39 
  40 #define OMPI_ANY_TAG    MPI_ANY_TAG
  41 #define OMPI_ANY_SOURCE MPI_ANY_SOURCE
  42 #define OMPI_PROC_NULL  MPI_PROC_NULL
  43 
  44 struct ompi_proc_t;
  45 
  46 #endif /* #define MCA_PML_CONSTANTS_H */

/* [<][>][^][v][top][bottom][index][help] */