summaryrefslogtreecommitdiffstats
path: root/src/H5Dpkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2015-12-30 18:50:01 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2015-12-30 18:50:01 (GMT)
commit528ab9b810102a7cc7773c6403c8b2be6578d380 (patch)
treea7e40e1cdbd5155e0556be335ab4db8e4d7ae6d5 /src/H5Dpkg.h
parentc6949efd4fd5f5757f2d0443d51e4d635485595b (diff)
downloadhdf5-528ab9b810102a7cc7773c6403c8b2be6578d380.zip
hdf5-528ab9b810102a7cc7773c6403c8b2be6578d380.tar.gz
hdf5-528ab9b810102a7cc7773c6403c8b2be6578d380.tar.bz2
[svn-r28756] Description:
Minor code neatening and cleanups (same as r28755) on revise_chunks branch. Tested on: MacOSX/64 10.11.2 (amazon) w/serial & parallel (Too minor for h5committest)
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r--src/H5Dpkg.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h
index 06e763c..4e6376b 100644
--- a/src/H5Dpkg.h
+++ b/src/H5Dpkg.h
@@ -250,7 +250,6 @@ typedef struct H5D_chunk_rec_t {
* to which the index points.
*/
typedef struct H5D_chunk_common_ud_t {
- /* downward */
const H5O_layout_chunk_t *layout; /* Chunk layout description */
const H5O_storage_chunk_t *storage; /* Chunk storage description */
const hsize_t *scaled; /* Scaled coordinates for a chunk */
@@ -258,13 +257,14 @@ typedef struct H5D_chunk_common_ud_t {
/* B-tree callback info for various operations */
typedef struct H5D_chunk_ud_t {
+ /* Downward */
H5D_chunk_common_ud_t common; /* Common info for B-tree user data (must be first) */
/* Upward */
- unsigned idx_hint; /*index of chunk in cache, if present */
- H5F_block_t chunk_block; /*offset/length of chunk in file */
- unsigned filter_mask; /*excluded filters */
- hsize_t chunk_idx; /*chunk index for EA, FA indexing */
+ unsigned idx_hint; /* Index of chunk in cache, if present */
+ H5F_block_t chunk_block; /* Offset/length of chunk in file */
+ unsigned filter_mask; /* Excluded filters */
+ hsize_t chunk_idx; /* Chunk index for EA, FA indexing */
} H5D_chunk_ud_t;
/* Typedef for "generic" chunk callbacks */