diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-02-04 21:14:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-02-04 21:14:42 (GMT) |
commit | 24770bf21839352eb3516bc4b472a4ec63176c9f (patch) | |
tree | dc7015ad7e1178472c132659aeae41d2c0626b48 /src/H5B2private.h | |
parent | 8ffba3474e33a667e2ada4d55143583b18a1c46e (diff) | |
download | hdf5-24770bf21839352eb3516bc4b472a4ec63176c9f.zip hdf5-24770bf21839352eb3516bc4b472a4ec63176c9f.tar.gz hdf5-24770bf21839352eb3516bc4b472a4ec63176c9f.tar.bz2 |
[svn-r9939] Purpose:
New feature
Description:
Expand v2 B-tree code to support splitting the root node when enough
records are inserted and move metadata cache callbacks into their own source
file.
Platforms tested:
FreeBSD 4.11 (sleipnir) w/parallel
Too minor for h5committest
Diffstat (limited to 'src/H5B2private.h')
-rw-r--r-- | src/H5B2private.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/H5B2private.h b/src/H5B2private.h index 5d8d42a..bd1515a 100644 --- a/src/H5B2private.h +++ b/src/H5B2private.h @@ -72,8 +72,11 @@ typedef struct H5B2_class_t { /* Compare records, according to a key */ herr_t (*compare)(const H5F_t *f, hid_t dxpl_id, const void *rec1, const void *rec2); /* Compare two native records */ - /* Encode, decode, debug record values */ - herr_t (*encode)(const H5F_t *f, uint8_t *raw, const void *record); /* Store record in native key table */ + /* Encode & decode record values */ + herr_t (*encode)(const H5F_t *f, uint8_t *raw, const void *record); /* Encode record from native form to disk storage form */ + herr_t (*decode)(const H5F_t *f, const uint8_t *raw, void *record); /* Decode record from disk storage form to native form */ + + /* Debug record values */ } H5B2_class_t; |