diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-29 22:45:57 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-29 22:45:57 (GMT) |
commit | 0836a8cf5652392f59d3917446a7ca2af9234e09 (patch) | |
tree | 6f2865263358c81f0eb5c077dc789e777c7cae5e /src/H5Oprivate.h | |
parent | 913adc97563247edb3e41ccaf827aae30a885b23 (diff) | |
download | hdf5-0836a8cf5652392f59d3917446a7ca2af9234e09.zip hdf5-0836a8cf5652392f59d3917446a7ca2af9234e09.tar.gz hdf5-0836a8cf5652392f59d3917446a7ca2af9234e09.tar.bz2 |
[svn-r17264] Description:
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.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index acd8036..74f6b97 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -357,15 +357,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 { |