diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-06-29 06:11:44 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-06-29 06:11:44 (GMT) |
commit | 804a88fafdca3d6a76312ab01ac4d6d5b103e9dc (patch) | |
tree | bbde4f73361e683af6ff16461e7d4d90d95f13c1 /src/H5FSint.c | |
parent | 3da8951fb3fc3fa850558ba7ea4d44d507fc1664 (diff) | |
download | hdf5-804a88fafdca3d6a76312ab01ac4d6d5b103e9dc.zip hdf5-804a88fafdca3d6a76312ab01ac4d6d5b103e9dc.tar.gz hdf5-804a88fafdca3d6a76312ab01ac4d6d5b103e9dc.tar.bz2 |
Fix for HDFFV-10160
Modifications to fix the assertion/abort failure when the application does not close the file.
Diffstat (limited to 'src/H5FSint.c')
-rw-r--r-- | src/H5FSint.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/H5FSint.c b/src/H5FSint.c index 1a41172..4297291 100644 --- a/src/H5FSint.c +++ b/src/H5FSint.c @@ -77,6 +77,32 @@ /*******************/ +/*------------------------------------------------------------------------- + * Function: H5FS_init + * + * Purpose: Initialize the interface in case it is unable to initialize + * itself soon enough. + * + * Return: Success: non-negative + * Failure: negative + * + * Programmer: Quincey Koziol + * Saturday, March 4, 2000 + * + *------------------------------------------------------------------------- + */ +herr_t +H5FS_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 H5FS_init() */ + /*------------------------------------------------------------------------- * Function: H5FS__create_flush_depend |