summaryrefslogtreecommitdiffstats
path: root/src/H5G.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2018-03-01 21:12:45 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2018-03-01 21:12:45 (GMT)
commit7dbf0958d46c322489adc7cb3e1d482b8c31ba54 (patch)
treeb3d54b25d8c9b4595ccd00d70d1cb37bced804b0 /src/H5G.c
parent0b755bc2c5c04d72a293d7e0391c2be8149cda8a (diff)
downloadhdf5-7dbf0958d46c322489adc7cb3e1d482b8c31ba54.zip
hdf5-7dbf0958d46c322489adc7cb3e1d482b8c31ba54.tar.gz
hdf5-7dbf0958d46c322489adc7cb3e1d482b8c31ba54.tar.bz2
Initial version of RADOS VOL plugin. Supports file and group
create/open/close, as well as path traversal.
Diffstat (limited to 'src/H5G.c')
-rw-r--r--src/H5G.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/H5G.c b/src/H5G.c
index 5d44a8f..051341d 100644
--- a/src/H5G.c
+++ b/src/H5G.c
@@ -145,6 +145,32 @@ static hbool_t H5G_top_package_initialize_s = FALSE;
/*-------------------------------------------------------------------------
+ * Function: H5G_init
+ *
+ * Purpose: Initialize the interface from some other package.
+ *
+ * Return: Success: non-negative
+ * Failure: negative
+ *
+ * Programmer: Mohamad Chaarawi
+ * July 2013
+ *
+ *-------------------------------------------------------------------------
+ */
+herr_t
+H5G_init(void)
+{
+ herr_t ret_value = SUCCEED; /* Return value */
+
+ FUNC_ENTER_NOAPI(FAIL)
+ /* FUNC_ENTER() does all the work */
+
+done:
+ FUNC_LEAVE_NOAPI(ret_value)
+} /* end H5G_init() */
+
+
+/*-------------------------------------------------------------------------
* Function: H5G__init_package
*
* Purpose: Initializes the H5G interface.