diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-31 15:19:48 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-01-31 15:19:48 (GMT) |
commit | 10382a1799504c5b2dea4c70881c021d1c0b04d1 (patch) | |
tree | 87b70cd2ab0443565e8d5f13e62e53dcbabb1271 /src/H5FDsrb.c | |
parent | efca86dc64d5b72c75603c93730c4273e6d5335f (diff) | |
download | hdf5-10382a1799504c5b2dea4c70881c021d1c0b04d1.zip hdf5-10382a1799504c5b2dea4c70881c021d1c0b04d1.tar.gz hdf5-10382a1799504c5b2dea4c70881c021d1c0b04d1.tar.bz2 |
[svn-r8134] Purpose:
Code cleanup
Description:
Add destructor to match constructor fr VFLs when they are shut down by the
library.
Solution:
Added H5FD_*_term() routines to "undo" changes made in H5FD_*_init()
routines.
Platforms tested:
IBM p690 (copper)
too minor to require h5committest
Diffstat (limited to 'src/H5FDsrb.c')
-rw-r--r-- | src/H5FDsrb.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/H5FDsrb.c b/src/H5FDsrb.c index 7f7b867..4f1ec55 100644 --- a/src/H5FDsrb.c +++ b/src/H5FDsrb.c @@ -196,6 +196,32 @@ done: } +/*--------------------------------------------------------------------------- + * Function: H5FD_srb_term + * + * Purpose: Shut down the VFD + * + * Return: <none> + * + * Programmer: Quincey Koziol + * Friday, Jan 30, 2004 + * + * Modification: + * + *--------------------------------------------------------------------------- + */ +void +H5FD_srb_term(void) +{ + FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5FD_srb_term) + + /* Reset VFL ID */ + H5FD_SRB_g=0; + + FUNC_LEAVE_NOAPI_VOID +} /* end H5FD_srb_term() */ + + /*------------------------------------------------------------------------- * Function: H5Pset_fapl_srb * |