summaryrefslogtreecommitdiffstats
path: root/src/H5Bprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2008-12-11 19:34:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2008-12-11 19:34:27 (GMT)
commit796f5a9f4c889296d8bae1913c7e86107755100b (patch)
tree1b8abbcc8c7fad874ed0f440904a44b1076fdc5d /src/H5Bprivate.h
parent4168cf3af65596824715ee7d4dd989d8578a95c0 (diff)
downloadhdf5-796f5a9f4c889296d8bae1913c7e86107755100b.zip
hdf5-796f5a9f4c889296d8bae1913c7e86107755100b.tar.gz
hdf5-796f5a9f4c889296d8bae1913c7e86107755100b.tar.bz2
[svn-r16183] Description:
Bring r16182 back from trunk: Rename internal routines, variables, macros, typedefs, etc. for chunked dataset storage from "istore" to some variant of "chunk" or "btree". Tested on: FreeBSD/32 6.3 (duty) in debug mode
Diffstat (limited to 'src/H5Bprivate.h')
-rw-r--r--src/H5Bprivate.h10
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 */