diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-12-05 21:09:32 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-12-05 21:09:32 (GMT) |
commit | 592a22345517dc321c47b2df7e6d52c968fbae9b (patch) | |
tree | fc7dd7b8ad918ef2544c0bef3b174a6b05839f3b | |
parent | 55e87e5b86aacbb37c57614cd2e869541291caad (diff) | |
download | hdf5-592a22345517dc321c47b2df7e6d52c968fbae9b.zip hdf5-592a22345517dc321c47b2df7e6d52c968fbae9b.tar.gz hdf5-592a22345517dc321c47b2df7e6d52c968fbae9b.tar.bz2 |
Update to new callbacks in H5VL_class_t.
-rw-r--r-- | test/echo_vol.c | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/test/echo_vol.c b/test/echo_vol.c index 02c0fb3..7f59832 100644 --- a/test/echo_vol.c +++ b/test/echo_vol.c @@ -23,11 +23,19 @@ static const H5VL_class_t echo_vol_g = { 0, /* version */ (H5VL_class_value_t)501, /* value */ "echo", /* name */ + 0, /* capability flags */ NULL, /* initialize */ NULL, /* terminate */ - (size_t)0, /* fapl size */ - NULL, /* fapl copy */ - NULL, /* fapl free */ + (size_t)0, /* info size */ + NULL, /* info copy */ + NULL, /* info compare */ + NULL, /* info free */ + NULL, /* info to str */ + NULL, /* str to info */ + NULL, /* get_object */ + NULL, /* get_wrap_ctx */ + NULL, /* wrap_object */ + NULL, /* free_wrap_ctx */ { /* attribute_cls */ NULL, /* create */ NULL, /* open */ @@ -87,10 +95,13 @@ static const H5VL_class_t echo_vol_g = { NULL, /* specific */ NULL /* optional */ }, - { /* async_cls */ + { /* request_cls */ + NULL, /* wait */ + NULL, /* notify */ NULL, /* cancel */ - NULL, /* test */ - NULL /* wait */ + NULL, /* specific */ + NULL, /* optional */ + NULL /* free */ }, NULL /* optional */ }; |