33#  Copyright (c) 2011-2014 Cisco Systems, Inc.  All rights reserved.
44#  Copyright (c) 2016      Research Organization for Information Science
55#                          and Technology (RIST). All rights reserved.
6+ #  Copyright (c) 2016      FUJITSU LIMITED.  All rights reserved.
67#  $COPYRIGHT$
78# 
89#  Additional copyrights may follow
@@ -105,6 +106,7 @@ sub write_file {
105106$handles -> {MPI_MAXLOC } = 11;
106107$handles -> {MPI_MINLOC } = 12;
107108$handles -> {MPI_REPLACE } = 13;
109+ $handles -> {MPI_NO_OP } = 14;
108110
109111$handles -> {MPI_COMM_NULL } = 2;
110112$handles -> {MPI_DATATYPE_NULL } = 0;
@@ -160,20 +162,22 @@ sub write_file {
160162$handles -> {MPI_LONG } = 41;
161163$handles -> {MPI_UNSIGNED_LONG } = 42;
162164$handles -> {MPI_LONG_LONG_INT } = 43;
165+ $handles -> {MPI_LONG_LONG } = $handles -> {MPI_LONG_LONG_INT };
163166$handles -> {MPI_UNSIGNED_LONG_LONG } = 44;
164167$handles -> {MPI_FLOAT } = 45;
165168$handles -> {MPI_DOUBLE } = 46;
166169$handles -> {MPI_LONG_DOUBLE } = 47;
167170$handles -> {MPI_FLOAT_INT } = 48;
168171$handles -> {MPI_DOUBLE_INT } = 49;
169- $handles -> {MPI_LONGDBL_INT } = 50;
172+ $handles -> {MPI_LONG_DOUBLE_INT } = 50;
170173$handles -> {MPI_LONG_INT } = 51;
171174$handles -> {MPI_2INT } = 52;
172175$handles -> {MPI_SHORT_INT } = 53;
173176$handles -> {MPI_CXX_BOOL } = 54;
174- $handles -> {MPI_CXX_CPLEX } = 55;
175- $handles -> {MPI_CXX_DBLCPLEX } = 56;
176- $handles -> {MPI_CXX_LDBLCPLEX } = 57;
177+ $handles -> {MPI_CXX_FLOAT_COMPLEX } = 55;
178+ $handles -> {MPI_CXX_COMPLEX } = $handles -> {MPI_CXX_FLOAT_COMPLEX };
179+ $handles -> {MPI_CXX_DOUBLE_COMPLEX } = 56;
180+ $handles -> {MPI_CXX_LONG_DOUBLE_COMPLEX } = 57;
177181$handles -> {MPI_INT8_T } = 58;
178182$handles -> {MPI_UINT8_T } = 59;
179183$handles -> {MPI_INT16_T } = 60;
@@ -184,8 +188,9 @@ sub write_file {
184188$handles -> {MPI_UINT64_T } = 65;
185189$handles -> {MPI_AINT } = 66;
186190$handles -> {MPI_OFFSET } = 67;
187- $handles -> {MPI_C_COMPLEX } = 68;
188- $handles -> {MPI_C_FLOAT_COMPLEX } = 69;
191+ $handles -> {MPI_C_BOOL } = 68;
192+ $handles -> {MPI_C_COMPLEX } = 69;
193+ $handles -> {MPI_C_FLOAT_COMPLEX } = $handles -> {MPI_C_COMPLEX };
189194$handles -> {MPI_C_DOUBLE_COMPLEX } = 70;
190195$handles -> {MPI_C_LONG_DOUBLE_COMPLEX } = 71;
191196$handles -> {MPI_COUNT } = 72;
@@ -235,6 +240,8 @@ sub write_file {
235240$constants -> {MPI_WIN_FLAVOR_ALLOCATE } = 2;
236241$constants -> {MPI_WIN_FLAVOR_DYNAMIC } = 3;
237242$constants -> {MPI_WIN_FLAVOR_SHARED } = 4;
243+ $constants -> {MPI_WIN_UNIFIED } = 0;
244+ $constants -> {MPI_WIN_SEPARATE } = 1;
238245
239246$constants -> {MPI_BSEND_OVERHEAD } = 128;
240247$constants -> {MPI_ORDER_C } = 0;
0 commit comments