diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2008-12-11 19:29:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2008-12-11 19:29:44 (GMT) |
commit | 40dac44efe5a2abc3cce34d2b08a211621bcf85c (patch) | |
tree | 8f36905deb5719e371e280f68104251488453547 /src/H5Bprivate.h | |
parent | 09ef5a6ef93e074e190ae7ef36abc5333b3f6260 (diff) | |
download | hdf5-40dac44efe5a2abc3cce34d2b08a211621bcf85c.zip hdf5-40dac44efe5a2abc3cce34d2b08a211621bcf85c.tar.gz hdf5-40dac44efe5a2abc3cce34d2b08a211621bcf85c.tar.bz2 |
[svn-r16182] Description:
Rename internal routines, variables, macros, typedefs, etc. for chunked
dataset storage from "istore" to some variant of "chunk" or "btree".
Tested on:
Mac OS X/32 10.5.5 (amazon) in debug mode
Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe,
in production mode
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
Diffstat (limited to 'src/H5Bprivate.h')
-rw-r--r-- | src/H5Bprivate.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/H5Bprivate.h b/src/H5Bprivate.h index c11d02c..93c2d80 100644 --- a/src/H5Bprivate.h +++ b/src/H5Bprivate.h @@ -57,6 +57,16 @@ /* Library Private Typedefs */ /****************************/ +/* B-tree IDs for various internal things. */ +/* Note - if more of these are added, any 'K' values (for internal or leaf + * nodes) they use will need to be stored in the file somewhere. -QAK + */ +typedef enum H5B_subid_t { + H5B_SNODE_ID = 0, /*B-tree is for symbol table nodes */ + H5B_CHUNK_ID = 1, /*B-tree is for chunked dataset storage */ + H5B_NUM_BTREE_ID /* Number of B-tree key IDs (must be last) */ +} H5B_subid_t; + /* Define return values from B-tree insertion callbacks */ typedef enum H5B_ins_t { H5B_INS_ERROR = -1, /*error return value */ |