diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2011-10-12 21:37:50 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2011-10-12 21:37:50 (GMT) |
commit | 81a9c71d86f3988ee162c05f40705ddd0533652f (patch) | |
tree | 86b3111623874e3b12656aae16042ea6c78a8e4c | |
parent | b80f663629f73a8cd3fc46fd58b06c8bf4c528d7 (diff) | |
download | hdf5-81a9c71d86f3988ee162c05f40705ddd0533652f.zip hdf5-81a9c71d86f3988ee162c05f40705ddd0533652f.tar.gz hdf5-81a9c71d86f3988ee162c05f40705ddd0533652f.tar.bz2 |
[svn-r21532] Removed dead code.
Tested on Windows.
-rw-r--r-- | src/H5FDwindows.c | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/src/H5FDwindows.c b/src/H5FDwindows.c index 105ac14..28434ec 100644 --- a/src/H5FDwindows.c +++ b/src/H5FDwindows.c @@ -28,65 +28,6 @@ /*------------------------------------------------------------------------- - * Function: H5FD_windows_init - * - * Purpose: Initialize this driver by registering the driver with the - * library. Note that this really initializes the underlying - * SEC2 driver. - * - * Return: Success: The driver ID for the windows(sec2) driver. - * Failure: Negative. - * - * Programmer: Dana Robinson - * October 12, 2011 - * - *------------------------------------------------------------------------- - */ -hid_t -H5FD_windows_init(void) -{ - hid_t ret_value; /* Return value */ - - FUNC_ENTER_NOAPI(H5FD_windows_init, FAIL) - - if(H5I_VFL != H5I_get_type(H5FD_SEC2_g)) - H5FD_SEC2_g = H5FD_register(&H5FD_sec2_g, sizeof(H5FD_class_t), FALSE); - - /* Set return value */ - ret_value = H5FD_SEC2_g; - -done: - FUNC_LEAVE_NOAPI(ret_value) -} /* end H5FD_sec2_init() */ - - -/*--------------------------------------------------------------------------- - * Function: H5FD_windows_term - * - * Purpose: Shut down the VFD. Note that this really shuts down the - * underlying SEC2 driver. - * - * Returns: <none> - * - * Programmer: Dana Robinson - * October 12, 2011 - * - *--------------------------------------------------------------------------- - */ -void -H5FD_windows_term(void) -{ - FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5FD_windows_term) - - /* Reset VFL ID */ - H5FD_SEC2_g = 0; - - FUNC_LEAVE_NOAPI_VOID -} /* end H5FD_windows_term() */ - - - -/*------------------------------------------------------------------------- * Function: H5Pset_fapl_windows * * Purpose: Modify the file access property list to use the H5FD_WINDOWS |