diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-18 14:39:26 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-06-18 14:39:26 (GMT) |
commit | 64b7be4a52b14dfefc7729aaf8be6649fb668cc4 (patch) | |
tree | 5e1061bf9dc61a5753a90dea5801672c03c8fdf4 /src/H5Fprivate.h | |
parent | 972707dcd3a123df1435d35d6b6a585222a1b6df (diff) | |
download | hdf5-64b7be4a52b14dfefc7729aaf8be6649fb668cc4.zip hdf5-64b7be4a52b14dfefc7729aaf8be6649fb668cc4.tar.gz hdf5-64b7be4a52b14dfefc7729aaf8be6649fb668cc4.tar.bz2 |
[svn-r5662] Purpose:
Bug fix.
Description:
The chunking code was using internal allocation routines to put blocks on
a free list for reuse, instead of using the system allocation routines (ie.
malloc, free, etc.). This causes problems when user filters attempt to
allocate/free chunks for their algorithm's use.
Solution:
Switched the chunking code back to using the system allocation routines,
we can address performance issues with them if it becomes a real problem.
Platforms tested:
Linux 2.2.x (eirene) && IRIX64 6.5 (modi4)
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index c18c331..6c7e913 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -400,11 +400,6 @@ __DLL__ herr_t H5F_istore_initialize_by_extent( H5F_t *f, const struct H5O_layout_t *layout, struct H5P_genplist_t *dc_plist, const struct H5S_t *space ); -/* Functions for allocation/releasing chunks */ -__DLL__ void * H5F_istore_chunk_alloc(size_t chunk_size); -__DLL__ void * H5F_istore_chunk_realloc(void *chunk, size_t new_size); -__DLL__ void * H5F_istore_chunk_free(void *chunk); - /* Address-related functions */ __DLL__ void H5F_addr_encode(H5F_t *, uint8_t** /*in,out*/, haddr_t); __DLL__ void H5F_addr_decode(H5F_t *, const uint8_t** /*in,out*/, |