diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-02-27 03:46:46 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-02-27 03:46:46 (GMT) |
commit | 3713db1174ff83154ff63f93b4ba512eebed9748 (patch) | |
tree | 957c509d716679b29fb84496741724bc161d8bbb /src/H5FDpublic.h | |
parent | 3e8948df52ce165edd3238a7e2ae3b047eac7836 (diff) | |
download | hdf5-3713db1174ff83154ff63f93b4ba512eebed9748.zip hdf5-3713db1174ff83154ff63f93b4ba512eebed9748.tar.gz hdf5-3713db1174ff83154ff63f93b4ba512eebed9748.tar.bz2 |
[svn-r11967] Purpose:
New feature
Description:
Check in initial "fractal heap" code, for supporting the group redesign.
Also, remove some remnants of the segmented heap/block tracker/B+tree code
which I didn't find during the last pass.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Mac OSX (amazon)
Linux 2.4
Diffstat (limited to 'src/H5FDpublic.h')
-rw-r--r-- | src/H5FDpublic.h | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/src/H5FDpublic.h b/src/H5FDpublic.h index 285404a..774b3f6 100644 --- a/src/H5FDpublic.h +++ b/src/H5FDpublic.h @@ -43,18 +43,21 @@ typedef enum H5FD_mem_t { H5FD_MEM_NTYPES /*must be last*/ } H5FD_mem_t; -/* Map "block tracker" header blocks to 'ohdr' type file memory, since its - * a fair amount of work to add a new kind of file memory, they are similar - * enough to object headers and probably too minor to deserve their own type. -QAK */ -#define H5FD_MEM_BLKTRK H5FD_MEM_OHDR - -/* Map "segmented heap" header blocks to 'ohdr' type file memory, since its - * a fair amount of work to add a new kind of file memory, they are similar +/* Map "fractal heap" header blocks to 'ohdr' type file memory, since its + * a fair amount of work to add a new kind of file memory and they are similar * enough to object headers and probably too minor to deserve their own type. - * Map "segmented heap" blocks to 'lheap' type file memory, since they will be - * replacing local heaps. -QAK */ -#define H5FD_MEM_SHEAP_HDR H5FD_MEM_OHDR -#define H5FD_MEM_SHEAP_BLOCK H5FD_MEM_LHEAP + * + * Map "fractal heap" indirect blocks to 'ohdr' type file memory, since they + * are similar to fractal heap header blocks. + * + * Map "fractal heap" direct blocks to 'lheap' type file memory, since they + * will be replacing local heaps. + * + * -QAK + */ +#define H5FD_MEM_FHEAP_HDR H5FD_MEM_OHDR +#define H5FD_MEM_FHEAP_INDIRECT H5FD_MEM_OHDR +#define H5FD_MEM_FHEAP_DIRECT H5FD_MEM_LHEAP /* * A free-list map which maps all types of allocation requests to a single |