Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in H5Cpkg.h #4796

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/H5Cpkg.h
Original file line number Diff line number Diff line change
Expand Up @@ -1912,7 +1912,7 @@ typedef struct H5C_tag_info_t {
* the hash table. Note that the index_size field (above)
* is also the sum of the sizes of all entries in the cache.
* Thus we should have the invariant that clean_index_size +
* dirty_index_size == index_size.
* dirty_index_size = index_size.
*
* WARNING:
* The value of the clean_index_size must not be mistaken for
Expand All @@ -1929,7 +1929,7 @@ typedef struct H5C_tag_info_t {
* the hash table. Note that the index_size field (above)
* is also the sum of the sizes of all entries in the cache.
* Thus we should have the invariant that clean_index_size +
* dirty_index_size == index_size.
* dirty_index_size = index_size.
*
* dirty_index_ring_size: Array of size_t of length H5C_RING_NTYPES used to
* maintain the sum of the sizes of all dirty entries in the
Expand Down Expand Up @@ -2025,12 +2025,12 @@ typedef struct H5C_tag_info_t {
* The cost of maintaining the skip list is significant. As it is only used
* on flush and close, it is maintained only when needed.
*
* To do this, we add a flag to control maintenanace of the skip list.
* To do this, we add a flag to control maintenance of the skip list.
* This flag is initially set to false, which disables all operations
* on the skip list.
*
* At the beginning of either flush or close, we scan the index list,
* insert all dirtly entries in the skip list, and enable operations
* insert all dirty entries in the skip list, and enable operations
* on skip list by setting above control flag to true.
*
* In the case of a partial flush (i.e. flush tagged entries), we only
Expand Down
Loading