summaryrefslogtreecommitdiffstats
path: root/src/H5Dpublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-01-31 20:21:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-01-31 20:21:43 (GMT)
commit2aa344d77a31f8fb692d25fc3adc6ed668184d72 (patch)
tree4d8aaeb54926bf169d687ddcc26ad20ee7deeaf5 /src/H5Dpublic.h
parent2d74d46d3fe259ed51b2b996b56559563999e852 (diff)
downloadhdf5-2aa344d77a31f8fb692d25fc3adc6ed668184d72.zip
hdf5-2aa344d77a31f8fb692d25fc3adc6ed668184d72.tar.gz
hdf5-2aa344d77a31f8fb692d25fc3adc6ed668184d72.tar.bz2
[svn-r16393] Description:
Connect extensible array as index for 1-D unlimited datasets (although datasets w/filters are not yet supported). Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode Mac OS X/32 10.5.6 (amazon) in debug mode Mac OS X/32 10.5.6 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r--src/H5Dpublic.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h
index bae5dcf..136911f 100644
--- a/src/H5Dpublic.h
+++ b/src/H5Dpublic.h
@@ -50,7 +50,8 @@ typedef enum H5D_layout_t {
/* Types of chunk index data structures */
typedef enum H5D_chunk_index_t {
- H5D_CHUNK_BTREE = 0, /* v1 B-tree index */
+ H5D_CHUNK_BTREE = 0, /* v1 B-tree index (default) */
+ H5D_CHUNK_EARRAY /* Extensible array (for 1-D unlimited dim) */
} H5D_chunk_index_t;
/* Values for the space allocation time property */