root/ompi/mpi/java/java/Constant.java

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

DEFINITIONS

This source file includes following definitions.
  1. setConstant

   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) 2015      Los Alamos National Security, LLC. All rights
  13  *                         reserved.
  14  * $COPYRIGHT$
  15  *
  16  * Additional copyrights may follow
  17  *
  18  * $HEADER$
  19  */
  20 
  21 package mpi;
  22 
  23 class Constant
  24 {
  25         protected int THREAD_SINGLE, THREAD_FUNNELED, THREAD_SERIALIZED, THREAD_MULTIPLE;
  26 
  27         protected int GRAPH, DIST_GRAPH, CART;
  28         protected int ANY_SOURCE, ANY_TAG;
  29         protected int PROC_NULL;
  30         protected int UNDEFINED;
  31         protected int IDENT, CONGRUENT, SIMILAR, UNEQUAL;
  32         protected int TAG_UB, HOST, IO, WTIME_IS_GLOBAL;
  33 
  34         protected int APPNUM, LASTUSEDCODE, UNIVERSE_SIZE, WIN_BASE, WIN_SIZE, WIN_DISP_UNIT;
  35 
  36         protected int VERSION, SUBVERSION;
  37         protected int ROOT, KEYVAL_INVALID, BSEND_OVERHEAD;
  38         protected int MAX_OBJECT_NAME, MAX_PORT_NAME, MAX_DATAREP_STRING;
  39         protected int MAX_INFO_KEY, MAX_INFO_VAL;
  40         protected int ORDER_C, ORDER_FORTRAN;
  41 
  42         protected int DISTRIBUTE_BLOCK, DISTRIBUTE_CYCLIC, DISTRIBUTE_NONE, DISTRIBUTE_DFLT_DARG;
  43 
  44         protected int MODE_CREATE, MODE_RDONLY, MODE_WRONLY, MODE_RDWR,
  45                 MODE_DELETE_ON_CLOSE, MODE_UNIQUE_OPEN, MODE_EXCL,
  46                 MODE_APPEND, MODE_SEQUENTIAL;
  47 
  48         protected int DISPLACEMENT_CURRENT;
  49         protected int SEEK_SET, SEEK_CUR, SEEK_END;
  50 
  51         protected int MODE_NOCHECK, MODE_NOPRECEDE, MODE_NOPUT, MODE_NOSTORE,
  52                 MODE_NOSUCCEED;
  53 
  54         protected int LOCK_EXCLUSIVE, LOCK_SHARED;
  55 
  56         // Error classes and codes
  57         protected int SUCCESS;
  58         protected int ERR_BUFFER;
  59         protected int ERR_COUNT;
  60         protected int ERR_TYPE;
  61         protected int ERR_TAG;
  62         protected int ERR_COMM;
  63         protected int ERR_RANK;
  64         protected int ERR_REQUEST;
  65         protected int ERR_ROOT;
  66         protected int ERR_GROUP;
  67         protected int ERR_OP;
  68         protected int ERR_TOPOLOGY;
  69         protected int ERR_DIMS;
  70         protected int ERR_ARG;
  71         protected int ERR_UNKNOWN;
  72         protected int ERR_TRUNCATE;
  73         protected int ERR_OTHER;
  74         protected int ERR_INTERN;
  75         protected int ERR_IN_STATUS;
  76         protected int ERR_PENDING;
  77         protected int ERR_ACCESS;
  78         protected int ERR_AMODE;
  79         protected int ERR_ASSERT;
  80         protected int ERR_BAD_FILE;
  81         protected int ERR_BASE;
  82         protected int ERR_CONVERSION;
  83         protected int ERR_DISP;
  84         protected int ERR_DUP_DATAREP;
  85         protected int ERR_FILE_EXISTS;
  86         protected int ERR_FILE_IN_USE;
  87         protected int ERR_FILE;
  88         protected int ERR_INFO_KEY;
  89         protected int ERR_INFO_NOKEY;
  90         protected int ERR_INFO_VALUE;
  91         protected int ERR_INFO;
  92         protected int ERR_IO;
  93         protected int ERR_KEYVAL;
  94         protected int ERR_LOCKTYPE;
  95         protected int ERR_NAME;
  96         protected int ERR_NO_MEM;
  97         protected int ERR_NOT_SAME;
  98         protected int ERR_NO_SPACE;
  99         protected int ERR_NO_SUCH_FILE;
 100         protected int ERR_PORT;
 101         protected int ERR_QUOTA;
 102         protected int ERR_READ_ONLY;
 103         protected int ERR_RMA_CONFLICT;
 104         protected int ERR_RMA_SYNC;
 105         protected int ERR_SERVICE;
 106         protected int ERR_SIZE;
 107         protected int ERR_SPAWN;
 108         protected int ERR_UNSUPPORTED_DATAREP;
 109         protected int ERR_UNSUPPORTED_OPERATION;
 110         protected int ERR_WIN;
 111         protected int ERR_LASTCODE;
 112         protected int ERR_SYSRESOURCE;
 113 
 114         protected Constant()
 115         {
 116                 setConstant();
 117         }
 118 
 119         private native void setConstant();
 120 
 121 } // Constant

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