diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2021-03-22 22:08:31 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2021-03-22 22:08:31 (GMT) |
commit | e736ca2b69b3bfa2050e90b45eaf4a3cfa00ecaa (patch) | |
tree | a3b1787c0f6d1fb6acacdbd0efe1546142963e38 /src | |
parent | 0a9e2fed69e1e22402cd19c80af73ad18a4d3063 (diff) | |
download | hdf5-e736ca2b69b3bfa2050e90b45eaf4a3cfa00ecaa.zip hdf5-e736ca2b69b3bfa2050e90b45eaf4a3cfa00ecaa.tar.gz hdf5-e736ca2b69b3bfa2050e90b45eaf4a3cfa00ecaa.tar.bz2 |
Adds a dedup callback to the mirror VFD
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FDmirror.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5FDmirror.c b/src/H5FDmirror.c index ef035c1..9f47806 100644 --- a/src/H5FDmirror.c +++ b/src/H5FDmirror.c @@ -197,6 +197,7 @@ static const H5FD_class_t H5FD_mirror_g = { H5FD_mirror_truncate, /* truncate */ H5FD_mirror_lock, /* lock */ H5FD_mirror_unlock, /* unlock */ + NULL, /* dedup */ H5FD_FLMAP_DICHOTOMY /* fl_map */ }; |