summaryrefslogtreecommitdiffstats
path: root/test/tid.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2020-12-01 19:20:05 (GMT)
committerGitHub <noreply@github.com>2020-12-01 19:20:05 (GMT)
commit3e61010340b7b545f434e3b39dbb56337f8803b5 (patch)
treedb16a6276a41cfa9d6f8c7be0d74f2b02dff038d /test/tid.c
parentadf7b1d4cf788f25a52619f5d1c957ac5a7c345c (diff)
downloadhdf5-3e61010340b7b545f434e3b39dbb56337f8803b5.zip
hdf5-3e61010340b7b545f434e3b39dbb56337f8803b5.tar.gz
hdf5-3e61010340b7b545f434e3b39dbb56337f8803b5.tar.bz2
Expand ID dec_ref and close callbacks to allow for asynchronous close operations (#135)
* Expand ID dec_ref and close callbacks to allow for asynchronous close operations. * Fix typo * Rename token -> request, remove programmer name * H5E_ATOM to H5E_ID
Diffstat (limited to 'test/tid.c')
-rw-r--r--test/tid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tid.c b/test/tid.c
index fe458dd..b3bef52 100644
--- a/test/tid.c
+++ b/test/tid.c
@@ -20,7 +20,7 @@
#include "H5Ipkg.h"
static herr_t
-free_wrapper(void *p)
+free_wrapper(void *p, void **_ctx)
{
HDfree(p);
return SUCCEED;
@@ -615,7 +615,7 @@ typedef struct rct_obj_t {
* master list of objects.
*/
static herr_t
-rct_free_cb(void *_obj)
+rct_free_cb(void *_obj, void **_ctx)
{
rct_obj_t * obj = (rct_obj_t *)_obj;
long remove_nth;