diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-10 16:37:53 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-03-10 16:37:53 (GMT) |
commit | a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3 (patch) | |
tree | f279be37845df0f2e7319976128c81d8d75400dc /src/H5Oprivate.h | |
parent | 6cfd5c146267e771e46d37709c405c7732feeaf0 (diff) | |
download | hdf5-a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3.zip hdf5-a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3.tar.gz hdf5-a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3.tar.bz2 |
[svn-r13488] Description:
Remove unused "min. creation order" field from link info object
header message.
Tested on:
FreeBSD/32 6.2 (duty)
Mac OS X/32 10.4.8 (amazon)
Diffstat (limited to 'src/H5Oprivate.h')
-rw-r--r-- | src/H5Oprivate.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Oprivate.h b/src/H5Oprivate.h index c916f7e..69635a5 100644 --- a/src/H5Oprivate.h +++ b/src/H5Oprivate.h @@ -173,11 +173,13 @@ typedef struct H5O_shared_t { * link info structure in src/H5Gprivate.h - QAK) * (if the fields in this struct are changed, also look at the code that * creates intermediate groups in src/H5Gtraverse.c - QAK) + * (The "max. creation order" field is signed so that we might have an easy + * way to add links to the front of the creation ordering (with negative + * values) as well as the end of the creation ordering - QAK) */ typedef struct H5O_linfo_t { /* (creation order info) */ hbool_t index_corder; /* Are creation order values indexed on links? */ - int64_t min_corder; /* Current min. creation order value for group */ int64_t max_corder; /* Current max. creation order value for group */ haddr_t corder_bt2_addr; /* Address of v2 B-tree for indexing creation order values of links */ |