summaryrefslogtreecommitdiffstats
path: root/src/H5Dpublic.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2009-07-27 15:42:52 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2009-07-27 15:42:52 (GMT)
commit7bc9c34c55f1c21b521d20b4ec01092fee73ff90 (patch)
tree7ffd67721a4ede622ad2e7c5afb93d5fb4796372 /src/H5Dpublic.h
parent21f8fa203a153bb9d3d26f73c9e56d22fd9671f2 (diff)
downloadhdf5-7bc9c34c55f1c21b521d20b4ec01092fee73ff90.zip
hdf5-7bc9c34c55f1c21b521d20b4ec01092fee73ff90.tar.gz
hdf5-7bc9c34c55f1c21b521d20b4ec01092fee73ff90.tar.bz2
[svn-r17240] Description:
Interim checkin, before switching to use layout index message for storing layout message v4 chunk index addresses. 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 debug mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode Mac OS X/32 10.5.7 (amazon) in debug mode Mac OS X/32 10.5.7 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r--src/H5Dpublic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h
index 1eaa705..056346e 100644
--- a/src/H5Dpublic.h
+++ b/src/H5Dpublic.h
@@ -51,8 +51,8 @@ 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 = 1, /* Extensible array (for 1 unlimited dim) */
- H5D_CHUNK_IDX_FARRAY = 2, /* Fixed array (for 0 unlimited dims) */
+ H5D_CHUNK_IDX_FARRAY = 1, /* Fixed array (for 0 unlimited dims) */
+ H5D_CHUNK_IDX_EARRAY = 2, /* Extensible array (for 1 unlimited dim) */
H5D_CHUNK_IDX_NTYPES /*this one must be last! */
} H5D_chunk_index_t;