summaryrefslogtreecommitdiffstats
path: root/src/H5HL.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-08-31 19:22:03 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-08-31 19:22:03 (GMT)
commit49fd0efca3dd515b07b47109cc999e7804874583 (patch)
tree3eec77e8e9dbb3bbe5f2f798804948fcf4b530b5 /src/H5HL.c
parentd222611cd36780a55aa25492d7e2af76f89a742f (diff)
downloadhdf5-49fd0efca3dd515b07b47109cc999e7804874583.zip
hdf5-49fd0efca3dd515b07b47109cc999e7804874583.tar.gz
hdf5-49fd0efca3dd515b07b47109cc999e7804874583.tar.bz2
[svn-r2491] Added type of data parameter to H5F_block_write calls.
Diffstat (limited to 'src/H5HL.c')
-rw-r--r--src/H5HL.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5HL.c b/src/H5HL.c
index 99c57da..1b72e81 100644
--- a/src/H5HL.c
+++ b/src/H5HL.c
@@ -395,7 +395,7 @@ H5HL_flush(H5F_t *f, hbool_t destroy, haddr_t addr, H5HL_t *heap)
if (IS_H5FD_MPIO(f))
H5FD_mpio_tas_allsame( f->shared->lf, TRUE ); /* only p0 writes */
#endif /* H5_HAVE_PARALLEL */
- if (H5F_block_write(f, addr,
+ if (H5F_block_write(f, H5FD_MEM_LHEAP, addr,
(hsize_t)(H5HL_SIZEOF_HDR(f)+heap->disk_alloc),
H5P_DEFAULT, heap->chunk) < 0) {
HRETURN_ERROR(H5E_HEAP, H5E_WRITEERROR, FAIL,
@@ -406,7 +406,7 @@ H5HL_flush(H5F_t *f, hbool_t destroy, haddr_t addr, H5HL_t *heap)
if (IS_H5FD_MPIO(f))
H5FD_mpio_tas_allsame( f->shared->lf, TRUE ); /* only p0 writes */
#endif /* H5_HAVE_PARALLEL */
- if (H5F_block_write(f, addr, (hsize_t)H5HL_SIZEOF_HDR(f),
+ if (H5F_block_write(f, H5FD_MEM_LHEAP, addr, (hsize_t)H5HL_SIZEOF_HDR(f),
H5P_DEFAULT, heap->chunk)<0) {
HRETURN_ERROR(H5E_HEAP, H5E_WRITEERROR, FAIL,
"unable to write heap header to file");
@@ -415,7 +415,7 @@ H5HL_flush(H5F_t *f, hbool_t destroy, haddr_t addr, H5HL_t *heap)
if (IS_H5FD_MPIO(f))
H5FD_mpio_tas_allsame( f->shared->lf, TRUE ); /* only p0 writes */
#endif /* H5_HAVE_PARALLEL */
- if (H5F_block_write(f, heap->addr, (hsize_t)(heap->disk_alloc),
+ if (H5F_block_write(f, H5FD_MEM_LHEAP, heap->addr, (hsize_t)(heap->disk_alloc),
H5P_DEFAULT,
heap->chunk + H5HL_SIZEOF_HDR(f)) < 0) {
HRETURN_ERROR(H5E_HEAP, H5E_WRITEERROR, FAIL,