diff options
author | David Young <dyoung@hdfgroup.org> | 2020-08-31 20:52:48 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-08-31 20:52:48 (GMT) |
commit | 349ed1418b7c5ae57c30fc77d63e551fec0354a3 (patch) | |
tree | 8cd2113c9b1f0115095ad23df3082e594c86293f | |
parent | 96c6a7c8d8966f40b066263720138e059668c4af (diff) | |
download | hdf5-349ed1418b7c5ae57c30fc77d63e551fec0354a3.zip hdf5-349ed1418b7c5ae57c30fc77d63e551fec0354a3.tar.gz hdf5-349ed1418b7c5ae57c30fc77d63e551fec0354a3.tar.bz2 |
Document vfd_swmr_pageno_to_mdf_idx_entry() and rename its parameter
nindices -> nentries.
-rw-r--r-- | src/H5FDprivate.h | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/src/H5FDprivate.h b/src/H5FDprivate.h index 5bd8419..b1d8708 100644 --- a/src/H5FDprivate.h +++ b/src/H5FDprivate.h @@ -212,19 +212,31 @@ typedef struct H5FD_vfd_swmr_md_header { size_t index_length; } H5FD_vfd_swmr_md_header; +/* Lookup the shadow-index entry corresponding to page number `target_page` + * in the HDF5 file and return it. If there is no match, return NULL. + * + * The lookup is performed by binary search on the `nentries` shadow index + * entries at `idx`. The entries must be sorted by their offset in the + * HDF5 file. Each entry must have a unique HDF5 file offset. + * + * If `reuse_garbage` is true, then entries marked for garbage collection + * are eligible search results. Return NULL if a matching entry is + * found, but the entry is marked for garbage collection and `reuse_garbage` + * is false. + */ static inline H5FD_vfd_swmr_idx_entry_t * vfd_swmr_pageno_to_mdf_idx_entry(H5FD_vfd_swmr_idx_entry_t *idx, - uint32_t nindices, uint64_t target_page, bool reuse_garbage) + uint32_t nentries, uint64_t target_page, bool reuse_garbage) { uint32_t top; uint32_t bottom; uint32_t probe; - if (nindices < 1) + if (nentries < 1) return NULL; bottom = 0; - top = nindices; + top = nentries; do { probe = (top + bottom) / 2; |