summaryrefslogtreecommitdiffstats
path: root/src/H5VLint.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2014-08-25 17:12:45 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2014-08-25 17:12:45 (GMT)
commitf9c3aeff1271697fdc7842ecb83ade5c6837a99c (patch)
tree2ad1866bededc7ab87bc670becc302b867c23654 /src/H5VLint.c
parent60c6686dfe9263e4d325fdc90676b262bef28f29 (diff)
downloadhdf5-f9c3aeff1271697fdc7842ecb83ade5c6837a99c.zip
hdf5-f9c3aeff1271697fdc7842ecb83ade5c6837a99c.tar.gz
hdf5-f9c3aeff1271697fdc7842ecb83ade5c6837a99c.tar.bz2
[svn-r25549] Implement 4 new routines:
H5VLinitialize, H5VLterminate, H5VLget_plugin_id, H5VLclose Add simple tests in external log plugin. Fix some bugs with terminating Native plugin.
Diffstat (limited to 'src/H5VLint.c')
-rw-r--r--src/H5VLint.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/H5VLint.c b/src/H5VLint.c
index 01d4bbb..bfdd35e 100644
--- a/src/H5VLint.c
+++ b/src/H5VLint.c
@@ -256,36 +256,6 @@ done:
/*-------------------------------------------------------------------------
- * Function: H5VL_close
- *
- * Purpose: decrements the ref count on the number of references
- * outstanding for a VOL plugin
- *
- * Return: Non-negative on success/Negative on failure
- *
- * Programmer: Mohamad Chaarawi
- * May, 2012
- *
- *-------------------------------------------------------------------------
- */
-herr_t
-H5VL_close(H5VL_class_t *cls)
-{
- herr_t ret_value = SUCCEED;
-
- FUNC_ENTER_NOAPI(FAIL)
-
- if(cls->terminate && cls->terminate() < 0)
- HGOTO_ERROR(H5E_VOL, H5E_CANTCLOSEOBJ, FAIL, "VOL plugin did not terminate cleanly")
-
- H5MM_xfree(cls);
-
-done:
- FUNC_LEAVE_NOAPI(ret_value)
-} /* end H5VL_close() */
-
-
-/*-------------------------------------------------------------------------
* Function: H5VL_get_plugin_name
*
* Purpose: Private version of H5VLget_plugin_name