diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-30 20:12:32 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-11-30 20:12:32 (GMT) |
commit | 047269139fb87ec8f79ba6110d46eb7e02bea985 (patch) | |
tree | 178b13f967702ab0dcbff9056344bba8bf603118 | |
parent | beb7428f68efbdb27c5ae06705c7eff04d8d4cc7 (diff) | |
download | hdf5-047269139fb87ec8f79ba6110d46eb7e02bea985.zip hdf5-047269139fb87ec8f79ba6110d46eb7e02bea985.tar.gz hdf5-047269139fb87ec8f79ba6110d46eb7e02bea985.tar.bz2 |
Add a couple of missing prototypes for static routines, along with updating
a comment from VOL plugin -> connector.
-rw-r--r-- | src/H5VLpassthru.c | 6 | ||||
-rw-r--r-- | test/h5test.c | 12 |
2 files changed, 12 insertions, 6 deletions
diff --git a/src/H5VLpassthru.c b/src/H5VLpassthru.c index 4c7e64a..a5da06e 100644 --- a/src/H5VLpassthru.c +++ b/src/H5VLpassthru.c @@ -63,6 +63,12 @@ typedef struct H5VL_pass_through_wrap_ctx_t { /* Function prototypes */ /********************* */ +/* Helper routines */ +static herr_t H5VL_pass_through_file_specific_reissue(void *obj, hid_t connector_id, + H5VL_file_specific_t specific_type, hid_t dxpl_id, void **req, ...); +static herr_t H5VL_pass_through_request_specific_reissue(void *obj, hid_t connector_id, + H5VL_request_specific_t specific_type, ...); + /* "Management" callbacks */ static herr_t H5VL_pass_through_init(hid_t vipl_id); static herr_t H5VL_pass_through_term(void); diff --git a/test/h5test.c b/test/h5test.c index f3d1ffc..0805f06 100644 --- a/test/h5test.c +++ b/test/h5test.c @@ -47,7 +47,7 @@ * HDF5_VOL_CONNECTOR: This string describes what VOL connector to * use for HDF5 file access. The first word in the * value is the name of the connector and subsequent data - * is interpreted according to the driver. See + * is interpreted according to the connector. See * h5_get_vol_fapl() for details. * * HDF5_LIBVER_BOUNDS: This string describes what library version bounds to @@ -1983,14 +1983,14 @@ error: * Purpose: Returns a disposable, generally non-functional, * VOL class struct. * - * In some of the test code, we need a disposable VOL plugin + * In some of the test code, we need a disposable VOL connector * but we don't want to mess with the real VFDs and we also - * don't have access to the internals of the real VOL plugins + * don't have access to the internals of the real VOL connectors * (which use static globals and functions) to easily duplicate - * them (e.g.: for testing VOL plugin ID handling). + * them (e.g.: for testing VOL connector ID handling). * * This API call will return a pointer to a VOL class that - * can be used to construct a test VOL using H5VLregister_plugin(). + * can be used to construct a test VOL using H5VLregister_connector(). * * Return: Success: A pointer to a VOL class struct * Failure: NULL @@ -2006,7 +2006,7 @@ h5_get_dummy_vol_class(void) if(NULL == (vol_class = (H5VL_class_t *)HDcalloc((size_t)1, sizeof(H5VL_class_t)))) TEST_ERROR; - /* Fill in the minimum parameters to make a VOL plugin class that + /* Fill in the minimum parameters to make a VOL connector class that * can be registered. */ vol_class->name = "dummy"; |