summaryrefslogtreecommitdiffstats
path: root/src/H5Tprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2004-06-15 16:02:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2004-06-15 16:02:44 (GMT)
commit7c18329abe3de6a0262914c7aeece57df95d95bd (patch)
treeea5f203581f1111e806c1927bb338db37e95c144 /src/H5Tprivate.h
parent193fc7a70fe457725a213ab9b0bebcb0df502ec1 (diff)
downloadhdf5-7c18329abe3de6a0262914c7aeece57df95d95bd.zip
hdf5-7c18329abe3de6a0262914c7aeece57df95d95bd.tar.gz
hdf5-7c18329abe3de6a0262914c7aeece57df95d95bd.tar.bz2
[svn-r8692] Purpose:
Code optimization Description: Avoid making copy of default vlen allocation info when default DXPL is used. Just retarget pointer to point to default info directly. Platforms tested: Solaris 2.7 (arabica) FreeBSD 4.10 (sleipnir) w/parallel Too minor to require h5committest
Diffstat (limited to 'src/H5Tprivate.h')
-rw-r--r--src/H5Tprivate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tprivate.h b/src/H5Tprivate.h
index 31fa493..1e4893b 100644
--- a/src/H5Tprivate.h
+++ b/src/H5Tprivate.h
@@ -87,7 +87,7 @@ H5_DLL herr_t H5T_convert(H5T_path_t *tpath, hid_t src_id, hid_t dst_id,
size_t nelmts, size_t buf_stride, size_t bkg_stride,
void *buf, void *bkg, hid_t dset_xfer_plist);
H5_DLL herr_t H5T_vlen_reclaim(void *elem, hid_t type_id, hsize_t ndim, hssize_t *point, void *_op_data);
-H5_DLL herr_t H5T_vlen_get_alloc_info(hid_t dxpl_id, H5T_vlen_alloc_info_t *vl_alloc_info);
+H5_DLL herr_t H5T_vlen_get_alloc_info(hid_t dxpl_id, H5T_vlen_alloc_info_t **vl_alloc_info);
H5_DLL htri_t H5T_set_loc(H5T_t *dt, H5F_t *f, H5T_loc_t loc);
H5_DLL htri_t H5T_is_sensible(const H5T_t *dt);
H5_DLL htri_t H5T_committed(H5T_t *type);