diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:26:42 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-08-31 19:26:42 (GMT) |
commit | a3b9c876e12b9cf41c957a3f5f3b5cba59086dda (patch) | |
tree | 00ee5c5d13e3d91ba86d9a694ace476e117693cd /src | |
parent | b678afccd8f7e761383d801f9578d06f65f74bd2 (diff) | |
download | hdf5-a3b9c876e12b9cf41c957a3f5f3b5cba59086dda.zip hdf5-a3b9c876e12b9cf41c957a3f5f3b5cba59086dda.tar.gz hdf5-a3b9c876e12b9cf41c957a3f5f3b5cba59086dda.tar.bz2 |
[svn-r2496] Changed H5F_block_write prototype & added metadata allocation field to file
access property lists.
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Fprivate.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index ee7d7c6..19b65b4 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -254,6 +254,7 @@ typedef struct H5F_access_t { double rdcc_w0; /* Preempt read chunks first? [0.0..1.0]*/ hsize_t threshold; /* Threshold for alignment */ hsize_t alignment; /* Alignment */ + size_t meta_block_size; /* Minimum metadata allocation block size (when aggregating metadata allocations */ uintn gc_ref; /* Garbage-collect references? */ hid_t driver_id; /* File driver ID */ void *driver_info; /* File driver specific information */ @@ -495,8 +496,8 @@ __DLL__ herr_t H5F_istore_dump_btree(H5F_t *f, FILE *stream, int ndims, /* Functions that operate on contiguous storage wrt boot block */ __DLL__ herr_t H5F_block_read(H5F_t *f, haddr_t addr, hsize_t size, hid_t dxpl_id, void *buf/*out*/); -__DLL__ herr_t H5F_block_write(H5F_t *f, haddr_t addr, hsize_t size, - hid_t dxpl_id, const void *buf); +__DLL__ herr_t H5F_block_write(H5F_t *f, H5FD_mem_t type, haddr_t addr, + hsize_t size, hid_t dxpl_id, const void *buf); /* Address-related macros and functions */ #define H5F_addr_overflow(X,Z) (HADDR_UNDEF==(X) || \ |