diff options
author | Vailin Choi <vchoi@hdfgroup.org> | 2015-06-23 23:06:30 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@hdfgroup.org> | 2015-06-23 23:06:30 (GMT) |
commit | d043c9c2655b1fbcb1dceb5ee0f29a4c4c47bf4e (patch) | |
tree | ba1d83bbbd949377dde4cc90a46e1dd61735b698 /src/H5HFpkg.h | |
parent | e642d17a4dedabd54819bb09fbd38b13eb985c69 (diff) | |
download | hdf5-d043c9c2655b1fbcb1dceb5ee0f29a4c4c47bf4e.zip hdf5-d043c9c2655b1fbcb1dceb5ee0f29a4c4c47bf4e.tar.gz hdf5-d043c9c2655b1fbcb1dceb5ee0f29a4c4c47bf4e.tar.bz2 |
[svn-r27272] Bring revision #24263 from revise_chksum_retry branch to revise_chunks. h5committested.
Diffstat (limited to 'src/H5HFpkg.h')
-rw-r--r-- | src/H5HFpkg.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/H5HFpkg.h b/src/H5HFpkg.h index b0eba2f..4863edc 100644 --- a/src/H5HFpkg.h +++ b/src/H5HFpkg.h @@ -105,6 +105,14 @@ + H5HF_DTABLE_INFO_SIZE(h) /* Size of managed obj. doubling-table info */ \ ) +/* Size of minimum header to decode for determining the full header size */ +#define H5HF_MIN_HEADER_SIZE ( \ + H5_SIZEOF_MAGIC + /* Signature */ \ + 1 + /* Version */ \ + 2 + /* Heap ID len */ \ + 2 /* I/O filters' encoded len */ \ + ) + /* Size of overhead for a direct block */ #define H5HF_MAN_ABS_DIRECT_OVERHEAD(h) ( \ /* General metadata fields */ \ |