diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-02 21:46:39 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-02 21:46:39 (GMT) |
commit | 84a4166e72abac9eb08a7daa3f67c90227641cda (patch) | |
tree | ef7159ea41f3f22ef049f0ddf240c561e09e26d0 /src/H5Oprivate.h | |
parent | 79aecf895393d2871764a9405c9698fd73225925 (diff) | |
download | hdf5-84a4166e72abac9eb08a7daa3f67c90227641cda.zip hdf5-84a4166e72abac9eb08a7daa3f67c90227641cda.tar.gz hdf5-84a4166e72abac9eb08a7daa3f67c90227641cda.tar.bz2 |
[svn-r12707] Description:
Further minor modifications to the file format for tracking links in groups.
This is tentatively the "final" file format for groups.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r-- | src/H5Oprivate.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index ead851e..fd226f1 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -108,9 +108,10 @@ typedef struct H5O_copy_t { * (Data structure in memory) */ typedef struct H5O_linfo_t { + hbool_t index_corder; /* Are creation order values indexed on links? */ hsize_t nlinks; /* Number of links in the group */ - int64_t min_corder; /* Min. creation order value for group */ - int64_t max_corder; /* Max. creation order value for group */ + int64_t min_corder; /* Current min. creation order value for group */ + int64_t max_corder; /* Current max. creation order value for group */ haddr_t link_fheap_addr; /* Address of fractal heap for storing "dense" links */ haddr_t name_bt2_addr; /* Address of v2 B-tree for indexing names of links */ haddr_t corder_bt2_addr; /* Address of v2 B-tree for indexing creation order values of links */ @@ -252,7 +253,6 @@ typedef struct H5O_ginfo_t { /* "New" format group info (stored) */ hbool_t track_corder; /* Are creation order values tracked on links? */ - hbool_t index_corder; /* Are creation order values indexed on links? */ uint32_t max_compact; /* Maximum # of compact links */ uint32_t min_dense; /* Minimum # of "dense" links */ uint32_t est_num_entries; /* Estimated # of entries in group */ |