diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-21 14:02:40 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-02-21 14:02:40 (GMT) |
commit | 9c7b019bc56277e08a504a992e287522f42abd0b (patch) | |
tree | b4d9387f5e2ba7eb708b487a783bc697abfcf52d /src/H5FPserver.c | |
parent | 23af46a164bfcef79520848028e90e74eb09fd27 (diff) | |
download | hdf5-9c7b019bc56277e08a504a992e287522f42abd0b.zip hdf5-9c7b019bc56277e08a504a992e287522f42abd0b.tar.gz hdf5-9c7b019bc56277e08a504a992e287522f42abd0b.tar.bz2 |
[svn-r6425] Purpose:
Update
Description:
Big change to the H5FD.c module:
- Split apart H5FD_alloc and H5FD_free. H5FD_alloc was huge and
H5FD_free had a freeing of the freelist part which I needed to
call from the SAP.
- Added support for FPHDF5. If it's a client, then it sends the
allocation or free request to the SAP. The SAP will call the
same code, but it'll actually do the allocation/freeing in that
case.
Platforms tested:
Linux & Modi4
Diffstat (limited to 'src/H5FPserver.c')
-rw-r--r-- | src/H5FPserver.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5FPserver.c b/src/H5FPserver.c index 2561396..b1cf6af 100644 --- a/src/H5FPserver.c +++ b/src/H5FPserver.c @@ -547,6 +547,7 @@ H5FP_free_file_info_node(H5FP_file_info *info) if (info) { H5TB_dfree(info->mod_tree, (void (*)(void*))H5FP_free_mod_node, NULL); H5TB_dfree(info->locks, (void (*)(void*))H5FP_free_object_lock, NULL); + H5FD_free_freelist(&info->file); HDfree(info); } |