diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-11-18 01:48:21 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-11-18 01:48:21 (GMT) |
commit | eba0ff43c968ef9a0b09edf19c1e337cfcae0816 (patch) | |
tree | 53142d64c8e678f0862533b17790bb4ea72fa87c /src/H5HFcache.c | |
parent | 248a93cde8d87dd3a8162831103b5358a166fed8 (diff) | |
download | hdf5-eba0ff43c968ef9a0b09edf19c1e337cfcae0816.zip hdf5-eba0ff43c968ef9a0b09edf19c1e337cfcae0816.tar.gz hdf5-eba0ff43c968ef9a0b09edf19c1e337cfcae0816.tar.bz2 |
Remove 'clear' callback from metadata cache client interface, using the
new 'entry cleaned' notify action innstead.
Diffstat (limited to 'src/H5HFcache.c')
-rw-r--r-- | src/H5HFcache.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/H5HFcache.c b/src/H5HFcache.c index bcf1344..0e9485f 100644 --- a/src/H5HFcache.c +++ b/src/H5HFcache.c @@ -138,7 +138,6 @@ const H5AC_class_t H5AC_FHEAP_HDR[1] = {{ H5HF__cache_hdr_serialize, /* 'serialize' callback */ NULL, /* 'notify' callback */ H5HF__cache_hdr_free_icr, /* 'free_icr' callback */ - NULL, /* 'clear' callback */ NULL, /* 'fsf_size' callback */ }}; @@ -155,7 +154,6 @@ const H5AC_class_t H5AC_FHEAP_IBLOCK[1] = {{ H5HF__cache_iblock_serialize, /* 'serialize' callback */ H5HF__cache_iblock_notify, /* 'notify' callback */ H5HF__cache_iblock_free_icr, /* 'free_icr' callback */ - NULL, /* 'clear' callback */ NULL, /* 'fsf_size' callback */ }}; @@ -172,7 +170,6 @@ const H5AC_class_t H5AC_FHEAP_DBLOCK[1] = {{ H5HF__cache_dblock_serialize, /* 'serialize' callback */ H5HF__cache_dblock_notify, /* 'notify' callback */ H5HF__cache_dblock_free_icr, /* 'free_icr' callback */ - NULL, /* 'clear' callback */ NULL, /* 'fsf_size' callback */ }}; |