diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-11-30 22:41:31 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-11-30 22:41:31 (GMT) |
commit | 5922bbb45f03b0e84c3aef7e1ed1010273caa7e2 (patch) | |
tree | a7ae3b7c54458ceffefacc21cb354c2c6d9e5868 /src/H5B2pkg.h | |
parent | 3d2beeec1fb63c8c2bac4658df382ea7a9d61e05 (diff) | |
download | hdf5-5922bbb45f03b0e84c3aef7e1ed1010273caa7e2.zip hdf5-5922bbb45f03b0e84c3aef7e1ed1010273caa7e2.tar.gz hdf5-5922bbb45f03b0e84c3aef7e1ed1010273caa7e2.tar.bz2 |
Minor normalization cleanups.
Diffstat (limited to 'src/H5B2pkg.h')
-rw-r--r-- | src/H5B2pkg.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5B2pkg.h b/src/H5B2pkg.h index 6a385d4..71700fe 100644 --- a/src/H5B2pkg.h +++ b/src/H5B2pkg.h @@ -236,14 +236,14 @@ typedef enum H5B2_update_status_t { H5B2_UPDATE_INSERT_CHILD_FULL /* Update will insert record, but child is full */ } H5B2_update_status_t; -/* Callback info for loading a free space header into the cache */ +/* Callback info for loading a v2 B-tree header into the cache */ typedef struct H5B2_hdr_cache_ud_t { H5F_t *f; /* File that v2 b-tree header is within */ haddr_t addr; /* Address of B-tree header in the file */ void *ctx_udata; /* User-data for protecting */ } H5B2_hdr_cache_ud_t; -/* Callback info for loading a free space internal node into the cache */ +/* Callback info for loading a v2 B-tree internal node into the cache */ typedef struct H5B2_internal_cache_ud_t { H5F_t *f; /* File that v2 b-tree header is within */ H5B2_hdr_t *hdr; /* v2 B-tree header */ @@ -251,7 +251,7 @@ typedef struct H5B2_internal_cache_ud_t { uint16_t depth; /* Depth of node to load */ } H5B2_internal_cache_ud_t; -/* Callback info for loading a free space leaf node into the cache */ +/* Callback info for loading a v2 B-tree leaf node into the cache */ typedef struct H5B2_leaf_cache_ud_t { H5F_t *f; /* File that v2 b-tree header is within */ H5B2_hdr_t *hdr; /* v2 B-tree header */ |