diff options
author | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2015-08-31 05:11:18 (GMT) |
---|---|---|
committer | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2016-11-29 23:42:30 (GMT) |
commit | fa613443479d7933973ca23cf844b439723522e1 (patch) | |
tree | 48f3071b76f1e3851a4a74fb47b30732336bff34 /src/H5Dpkg.h | |
parent | 665b7c3bae8c4e75790c717752f7656bf2477de1 (diff) | |
download | hdf5-fa613443479d7933973ca23cf844b439723522e1.zip hdf5-fa613443479d7933973ca23cf844b439723522e1.tar.gz hdf5-fa613443479d7933973ca23cf844b439723522e1.tar.bz2 |
Save dset_id within H5D_t shared struct
Add H5D_open_index/H5D_close_index to open index when needed
Diffstat (limited to 'src/H5Dpkg.h')
-rw-r--r-- | src/H5Dpkg.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Dpkg.h b/src/H5Dpkg.h index 3bffb4b..a2ea840 100644 --- a/src/H5Dpkg.h +++ b/src/H5Dpkg.h @@ -409,6 +409,7 @@ typedef struct H5D_rdcdc_t { * there will be two IDs and two H5D_t structs, both sharing one H5D_shared_t. */ typedef struct H5D_shared_t { + hid_t dset_id; /* ID of this dataset */ size_t fo_count; /* Reference count */ hbool_t closing; /* Flag to indicate dataset is closing */ hid_t type_id; /* ID for dataset's datatype */ |