summaryrefslogtreecommitdiffstats
path: root/src/H5Dpublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-03 04:24:25 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-03 04:24:25 (GMT)
commit441b2702341fe30c03ae7df6239a96b6dbcbfd55 (patch)
treeee0207d9493101f6040c6be97d0cb31cbf2ebd46 /src/H5Dpublic.h
parent41220f091117888c29a80949cd32fb99e7d877ea (diff)
downloadhdf5-441b2702341fe30c03ae7df6239a96b6dbcbfd55.zip
hdf5-441b2702341fe30c03ae7df6239a96b6dbcbfd55.tar.gz
hdf5-441b2702341fe30c03ae7df6239a96b6dbcbfd55.tar.bz2
[svn-r17156] Description:
Hook fixed array data structure up to dataset code as a chunk index when there are 0 unlimited dimensions. Tested on: Mac OS X/32 10.5.7 (amazon) (h5committest not required on this branch)
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r--src/H5Dpublic.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h
index 79f0bc4..1eaa705 100644
--- a/src/H5Dpublic.h
+++ b/src/H5Dpublic.h
@@ -51,7 +51,9 @@ typedef enum H5D_layout_t {
/* Types of chunk index data structures */
typedef enum H5D_chunk_index_t {
H5D_CHUNK_IDX_BTREE = 0, /* v1 B-tree index (default) */
- H5D_CHUNK_IDX_EARRAY /* Extensible array (for 1 unlimited dim) */
+ H5D_CHUNK_IDX_EARRAY = 1, /* Extensible array (for 1 unlimited dim) */
+ H5D_CHUNK_IDX_FARRAY = 2, /* Fixed array (for 0 unlimited dims) */
+ H5D_CHUNK_IDX_NTYPES /*this one must be last! */
} H5D_chunk_index_t;
/* Values for the space allocation time property */