summaryrefslogtreecommitdiffstats
path: root/src/H5HFcache.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2015-06-24 17:22:38 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2015-06-24 17:22:38 (GMT)
commite36e886cf75b836aba005abea24b955057778ebb (patch)
tree299f96395e3b147c1b54b7aa54dcb15db5b4c5d3 /src/H5HFcache.c
parent85166660d6e7eb90afbfbee5413470c67cede381 (diff)
downloadhdf5-e36e886cf75b836aba005abea24b955057778ebb.zip
hdf5-e36e886cf75b836aba005abea24b955057778ebb.tar.gz
hdf5-e36e886cf75b836aba005abea24b955057778ebb.tar.bz2
[svn-r27277] Bring revision #24353 from revise_chksum_retry branch to revise_chunks. h5committested.
Diffstat (limited to 'src/H5HFcache.c')
-rw-r--r--src/H5HFcache.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5HFcache.c b/src/H5HFcache.c
index 4066b7b..70dd569 100644
--- a/src/H5HFcache.c
+++ b/src/H5HFcache.c
@@ -425,9 +425,9 @@ H5HF_cache_hdr_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_udata)
const uint8_t *p; /* Pointer into raw data buffer */
uint32_t stored_chksum; /* Stored metadata checksum value */
uint32_t computed_chksum; /* Computed metadata checksum value */
- size_t tries, max_tries; /* The # of read attempts */
- size_t fixed_tries; /* The # of read attempts for the minimum portion */
- size_t retries; /* The # of retries */
+ unsigned tries, max_tries; /* The # of read attempts */
+ unsigned fixed_tries; /* The # of read attempts for the minimum portion */
+ unsigned retries; /* The # of retries */
H5HF_hdr_t *ret_value; /* Return value */
FUNC_ENTER_NOAPI_NOINIT
@@ -1497,9 +1497,9 @@ H5HF_cache_dblock_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_udata)
haddr_t heap_addr; /* Address of heap header in the file */
uint32_t computed_chksum; /* Computed metadata checksum value */
uint32_t stored_chksum; /* Metadata checksum value */
- size_t tries, max_tries; /* The # of read attempts */
- size_t retries; /* The # of retries */
- size_t chk_size; /* The size for validating checksum */
+ unsigned tries, max_tries; /* The # of read attempts */
+ unsigned retries; /* The # of retries */
+ size_t chk_size; /* The size for validating checksum */
uint8_t *chk_p; /* Pointer to the area for validating checksum */
size_t read_size; /* Size of filtered direct block to read */
H5HF_direct_t *ret_value; /* Return value */