diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2003-02-12 20:07:21 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2003-02-12 20:07:21 (GMT) |
commit | d2bfd727ca0e9f298598b723d20faef3edf7b582 (patch) | |
tree | 0805568cda4cfea7021f770c22b9f7386829e6c3 /src/H5FD.c | |
parent | 2f8719efde2cb32cd84eaac18603464b3328c199 (diff) | |
download | hdf5-d2bfd727ca0e9f298598b723d20faef3edf7b582.zip hdf5-d2bfd727ca0e9f298598b723d20faef3edf7b582.tar.gz hdf5-d2bfd727ca0e9f298598b723d20faef3edf7b582.tar.bz2 |
[svn-r6400]
Purpose:
Change feature
Description:
Switch to Fletcher32 from Adler32 checksum
Platforms tested:
arabica, eirene, modi4
Misc. update:
MANIFEST and RELEASE.txt updated.
Diffstat (limited to 'src/H5FD.c')
-rw-r--r-- | src/H5FD.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1178,7 +1178,7 @@ H5FDalloc(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, hsize_t size) haddr_t ret_value = HADDR_UNDEF; FUNC_ENTER_API(H5FDalloc, HADDR_UNDEF); - H5TRACE3("a","xMth",file,type,size); + H5TRACE4("a","xMtih",file,type,dxpl_id,size); /* Check args */ if (!file || !file->cls) @@ -1704,7 +1704,7 @@ H5FDfree(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t addr, hsize_t siz herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_API(H5FDfree, FAIL); - H5TRACE4("e","xMtah",file,type,addr,size); + H5TRACE5("e","xMtiah",file,type,dxpl_id,addr,size); /* Check args */ if (!file || !file->cls) @@ -1985,7 +1985,7 @@ H5FDrealloc(H5FD_t *file, H5FD_mem_t type, hid_t dxpl_id, haddr_t old_addr, hsiz haddr_t ret_value=HADDR_UNDEF; FUNC_ENTER_API(H5FDrealloc, HADDR_UNDEF); - H5TRACE5("a","xMtahh",file,type,old_addr,old_size,new_size); + H5TRACE6("a","xMtiahh",file,type,dxpl_id,old_addr,old_size,new_size); /* Check args */ if (H5P_DEFAULT == dxpl_id) @@ -2870,7 +2870,7 @@ H5FDflush(H5FD_t *file, hid_t dxpl_id, unsigned closing) herr_t ret_value=SUCCEED; /* Return value */ FUNC_ENTER_API(H5FDflush, FAIL); - H5TRACE2("e","xIu",file,closing); + H5TRACE3("e","xiIu",file,dxpl_id,closing); /* Check args */ if (!file || !file->cls) |