summaryrefslogtreecommitdiffstats
path: root/src/H5Dpkg.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2016-03-24 04:27:14 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2016-03-24 04:27:14 (GMT)
commitcaf3b0db1486e35d237181ae50b189d6fca5f417 (patch)
tree11385e017d53c3b9bc4e6e69b559d881516502b8 /src/H5Dpkg.h
parent9333a2e39c9a496f2a21a97d772493932c3f66d4 (diff)
downloadhdf5-caf3b0db1486e35d237181ae50b189d6fca5f417.zip
hdf5-caf3b0db1486e35d237181ae50b189d6fca5f417.tar.gz
hdf5-caf3b0db1486e35d237181ae50b189d6fca5f417.tar.bz2
[svn-r29549] Minor normalization w/ revise_chunks in preparation for big merge.
Tested on: 64-bit Ubuntu 15.10 w/ gcc 5.2.1 autotools serial autotools parallel (MPICH 3.1.4)
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r--src/H5Dpkg.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h
index 2629008..eabefc4 100644
--- a/src/H5Dpkg.h
+++ b/src/H5Dpkg.h
@@ -46,19 +46,19 @@
#define H5D_MINHDR_SIZE 256
/* [Simple] Macro to construct a H5D_io_info_t from it's components */
-#define H5D_BUILD_IO_INFO_WRT(io_info, ds, dxpl_c, dxpl_i, str, buf) \
+#define H5D_BUILD_IO_INFO_WRT(io_info, ds, dxpl_c, dxpl_m, dxpl_r, str, buf) \
(io_info)->dset = ds; \
(io_info)->dxpl_cache = dxpl_c; \
- (io_info)->raw_dxpl_id = dxpl_i; \
- (io_info)->md_dxpl_id = dxpl_i; \
+ (io_info)->raw_dxpl_id = dxpl_r; \
+ (io_info)->md_dxpl_id = dxpl_m; \
(io_info)->store = str; \
(io_info)->op_type = H5D_IO_OP_WRITE; \
(io_info)->u.wbuf = buf
-#define H5D_BUILD_IO_INFO_RD(io_info, ds, dxpl_c, dxpl_i, str, buf) \
+#define H5D_BUILD_IO_INFO_RD(io_info, ds, dxpl_c, dxpl_m, dxpl_r, str, buf) \
(io_info)->dset = ds; \
(io_info)->dxpl_cache = dxpl_c; \
- (io_info)->raw_dxpl_id = dxpl_i; \
- (io_info)->md_dxpl_id = dxpl_i; \
+ (io_info)->raw_dxpl_id = dxpl_r; \
+ (io_info)->md_dxpl_id = dxpl_m; \
(io_info)->store = str; \
(io_info)->op_type = H5D_IO_OP_READ; \
(io_info)->u.rbuf = buf