diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-03 03:36:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-07-03 03:36:44 (GMT) |
commit | 41220f091117888c29a80949cd32fb99e7d877ea (patch) | |
tree | 98622abae20a29ed59152e8271c15c3b72bb0f04 /src/H5Fprivate.h | |
parent | 84728ecf74516e616b2dc8f651489c487fc3088e (diff) | |
download | hdf5-41220f091117888c29a80949cd32fb99e7d877ea.zip hdf5-41220f091117888c29a80949cd32fb99e7d877ea.tar.gz hdf5-41220f091117888c29a80949cd32fb99e7d877ea.tar.bz2 |
[svn-r17154] Description:
Add fixed array data structure. (For initial use as a chunk index)
Tested on:
Mac OS X/32 10.5.7 (amazon)
(h5committest not required on this branch)
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index 8e69d35..3550a4a 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -430,6 +430,10 @@ typedef struct H5F_blk_aggr_t H5F_blk_aggr_t; #define H5EA_SBLOCK_MAGIC "EASB" /* Super block */ #define H5EA_DBLOCK_MAGIC "EADB" /* Data block */ +/* Fixed array signatures */ +#define H5FA_HDR_MAGIC "FAHD" /* Header */ +#define H5FA_DBLOCK_MAGIC "FADB" /* Data block */ + /* Free space signatures */ #define H5FS_HDR_MAGIC "FSHD" /* Header */ #define H5FS_SINFO_MAGIC "FSSE" /* Serialized sections */ |