diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-12-06 14:14:34 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-12-06 14:14:34 (GMT) |
commit | 2998dbfc709f7746831e71dfb24145bd62f4f4bb (patch) | |
tree | 5274209ee166716b9ae96c424e4c5d360b07630c /test/echo_vol.c | |
parent | eb1b3f42c46fd7317c904105515c4d47d8f035fe (diff) | |
parent | f2da47f732ded55837f6d008af46d0c448bec1f1 (diff) | |
download | hdf5-2998dbfc709f7746831e71dfb24145bd62f4f4bb.zip hdf5-2998dbfc709f7746831e71dfb24145bd62f4f4bb.tar.gz hdf5-2998dbfc709f7746831e71dfb24145bd62f4f4bb.tar.bz2 |
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit 'f2da47f732ded55837f6d008af46d0c448bec1f1':
Update to new callbacks in H5VL_class_t.
Diffstat (limited to 'test/echo_vol.c')
-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 */ }; |