diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2018-03-01 21:12:45 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2018-03-01 21:12:45 (GMT) |
commit | 7dbf0958d46c322489adc7cb3e1d482b8c31ba54 (patch) | |
tree | b3d54b25d8c9b4595ccd00d70d1cb37bced804b0 /src/H5G.c | |
parent | 0b755bc2c5c04d72a293d7e0391c2be8149cda8a (diff) | |
download | hdf5-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.c | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -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. |