diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-12-11 08:28:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-12-11 08:28:05 (GMT) |
commit | feb9d1f6761b541a388100d04ec56a9b88a7e462 (patch) | |
tree | c79f3b73f886cb9c7c27926c77d4f951bc460ef7 /test/cache_common.h | |
parent | cc6eb939f4dec06e234835acbb5b3bc269b228c5 (diff) | |
download | hdf5-feb9d1f6761b541a388100d04ec56a9b88a7e462.zip hdf5-feb9d1f6761b541a388100d04ec56a9b88a7e462.tar.gz hdf5-feb9d1f6761b541a388100d04ec56a9b88a7e462.tar.bz2 |
Bring over changes from revise_chunks that cleanup recent SWMR changes from
code review feedback.
Diffstat (limited to 'test/cache_common.h')
-rw-r--r-- | test/cache_common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/cache_common.h b/test/cache_common.h index 3abcab5..1ab04cb 100644 --- a/test/cache_common.h +++ b/test/cache_common.h @@ -360,9 +360,9 @@ typedef struct test_entry_t unsigned notify_after_insert_count; /* Count of times that entry was inserted in cache */ unsigned notify_before_evict_count; /* Count of times that entry was removed in cache */ - unsigned actual_len; /* Simulate the entry's actual size for a speculative load */ - unsigned max_verify_ct; /* Maximum # of times to verify an entry's checksum */ - unsigned verify_ct; /* Count the # of checksum verification for an entry */ + size_t actual_len; /* Simulate the entry's actual size for a speculative load */ + unsigned max_verify_ct; /* Maximum # of times to verify an entry's checksum */ + unsigned verify_ct; /* Count the # of checksum verification for an entry */ } test_entry_t; /* The following are cut down test versions of the hash table manipulation |