diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-11-13 23:56:45 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-11-13 23:56:45 (GMT) |
commit | 65f2fdd4472576dcea6e74b89d7089bf479d47ec (patch) | |
tree | 88122003377a84f321caf787662a56cc9fc466ca /src/H5Fpkg.h | |
parent | 49ef13ea740b940d410c3091d180b54985e701a7 (diff) | |
download | hdf5-65f2fdd4472576dcea6e74b89d7089bf479d47ec.zip hdf5-65f2fdd4472576dcea6e74b89d7089bf479d47ec.tar.gz hdf5-65f2fdd4472576dcea6e74b89d7089bf479d47ec.tar.bz2 |
[svn-r17886] Description:
Bring r17885 from trunk to 1.8 branch:
Convert 'huge' fractal heap object management code to use refactored
v2 B-tree routines.
Also, switch internal representation of 'sizeof_addr' and 'sizeof_size'
in files to be uint8_t's instead of size_t's, since they are stored in single
bytes in the file format.
Various other minor compiler warning cleanups and error call tweaks.
Tested on:
FreeBSD/32 6.3 (duty) in debug mode
(h5committested on trunk
Diffstat (limited to 'src/H5Fpkg.h')
-rw-r--r-- | src/H5Fpkg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fpkg.h b/src/H5Fpkg.h index 59fa349..9dd73b5 100644 --- a/src/H5Fpkg.h +++ b/src/H5Fpkg.h @@ -197,8 +197,8 @@ typedef struct H5F_file_t { H5F_mtab_t mtab; /* File mount table */ /* Cached values from FCPL/superblock */ - size_t sizeof_addr; /* Size of addresses in file */ - size_t sizeof_size; /* Size of offsets in file */ + uint8_t sizeof_addr; /* Size of addresses in file */ + uint8_t sizeof_size; /* Size of offsets in file */ haddr_t sohm_addr; /* Relative address of shared object header message table */ unsigned sohm_vers; /* Version of shared message table on disk */ unsigned sohm_nindexes; /* Number of shared messages indexes in the table */ |