diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-29 21:45:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-03-29 21:45:09 (GMT) |
commit | a9d5fc42eb26da76fc7c3b5687552d4291bea1de (patch) | |
tree | 3856b4ecf6930bab7e9096bcc42980e8db95e82d /src/H5ACprivate.h | |
parent | d8b389836869c89801b9a1c2758d83b800b8f7b6 (diff) | |
download | hdf5-a9d5fc42eb26da76fc7c3b5687552d4291bea1de.zip hdf5-a9d5fc42eb26da76fc7c3b5687552d4291bea1de.tar.gz hdf5-a9d5fc42eb26da76fc7c3b5687552d4291bea1de.tar.bz2 |
[svn-r10506] Purpose:
New feature
Description:
Add first iteration of "segmented heap" code, which will be used to store
links in groups in a more flexible way than the previous "local heap" mechanism.
Platforms tested:
FreeBSD 4.11 (sleipnir) w/parallel
Solaris 2.9 (shanti)
Diffstat (limited to 'src/H5ACprivate.h')
-rw-r--r-- | src/H5ACprivate.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5ACprivate.h b/src/H5ACprivate.h index bdfc57b..cb5839a 100644 --- a/src/H5ACprivate.h +++ b/src/H5ACprivate.h @@ -48,7 +48,8 @@ #define H5AC_BT2_INT_ID 6 /*v2 B-tree internal node */ #define H5AC_BT2_LEAF_ID 7 /*v2 B-tree leaf node */ #define H5AC_BLTR_ID 8 /*block tracker */ -#define H5AC_NTYPES 9 +#define H5AC_SHEAP_ID 9 /*segmented heap */ +#define H5AC_NTYPES 10 /* H5AC_DUMP_STATS_ON_CLOSE should always be FALSE when * H5C_COLLECT_CACHE_STATS is FALSE. |