summaryrefslogtreecommitdiffstats
path: root/src/H5Oprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-29 23:38:26 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-29 23:38:26 (GMT)
commit03d1221bd821c397bb4a2222e3c7b49fa93fd96e (patch)
treef17b4e8b59e40b186ec366baf6df1dd24dccd44b /src/H5Oprivate.h
parentded93bd0c4842f7941e0468411db4cfc325a5095 (diff)
downloadhdf5-03d1221bd821c397bb4a2222e3c7b49fa93fd96e.zip
hdf5-03d1221bd821c397bb4a2222e3c7b49fa93fd96e.tar.gz
hdf5-03d1221bd821c397bb4a2222e3c7b49fa93fd96e.tar.bz2
[svn-r17265] Description:
Bring r17264 from trunk to 1.8 branch: Refine how we store the chunk index address in the layout storage structure. Tested on: FreeBSD/32 6.3 (duty) debug Mac OS X/32 10.5.7 (amazon) debug & production Too minor to require h5committest
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r--src/H5Oprivate.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h
index 3afbd5a..ada4c9c 100644
--- a/src/H5Oprivate.h
+++ b/src/H5Oprivate.h
@@ -350,15 +350,8 @@ typedef struct H5O_storage_contig_t {
haddr_t addr; /* File address of data */
} H5O_storage_contig_t;
-typedef struct H5O_storage_chunk_btree_t {
- haddr_t addr; /* File address of B-tree */
-} H5O_storage_chunk_btree_t;
-
typedef struct H5O_storage_chunk_t {
- H5D_chunk_index_t idx_type; /* Type of chunk index */
- union {
- H5O_storage_chunk_btree_t btree; /* Information for v1 B-tree index */
- } u;
+ haddr_t idx_addr; /* File address of chunk index */
} H5O_storage_chunk_t;
typedef struct H5O_storage_compact_t {