summaryrefslogtreecommitdiffstats
path: root/src/H5F.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-08-08 19:15:22 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-08-08 19:15:22 (GMT)
commit1784c3f09a9bbf148223212c6505f19106a59b97 (patch)
tree3e37bc986972c64ebc3d1cdd719b84870ee43ab9 /src/H5F.c
parente6113716250b0bea19a87ada7d4b2b9adf8b1106 (diff)
downloadhdf5-1784c3f09a9bbf148223212c6505f19106a59b97.zip
hdf5-1784c3f09a9bbf148223212c6505f19106a59b97.tar.gz
hdf5-1784c3f09a9bbf148223212c6505f19106a59b97.tar.bz2
[svn-r7315] Purpose:
Code cleanup Description: Chase error API changes Removed H5F_addr_pack() routine, which is no longer necessary. Platforms tested: h5committested
Diffstat (limited to 'src/H5F.c')
-rw-r--r--src/H5F.c39
1 files changed, 1 insertions, 38 deletions
diff --git a/src/H5F.c b/src/H5F.c
index c20d1ce..6600196 100644
--- a/src/H5F.c
+++ b/src/H5F.c
@@ -1859,7 +1859,7 @@ H5F_open(const char *name, unsigned flags, hid_t fcpl_id, hid_t fapl_id, hid_t d
if (NULL==(lf=H5FD_open(name, tent_flags, fapl_id, HADDR_UNDEF))) {
if (tent_flags == flags)
HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, "unable to open file");
- H5E_clear(H5E_get_my_stack());
+ H5E_clear(NULL);
tent_flags = flags;
if (NULL==(lf=H5FD_open(name, tent_flags, fapl_id, HADDR_UNDEF)))
HGOTO_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, "unable to open file");
@@ -4163,43 +4163,6 @@ H5F_addr_decode(H5F_t *f, const uint8_t **pp/*in,out*/, haddr_t *addr_p/*out*/)
/*-------------------------------------------------------------------------
- * Function: H5F_addr_pack
- *
- * Purpose: Converts a long[2] array (usually returned from
- * H5G_get_objinfo) back into a haddr_t
- *
- * Return: Non-negative on success/Negative on failure
- *
- * Programmer: Quincey Koziol
- * Tuesday, October 23, 1998
- *
- * Modifications:
- * Albert Cheng, 1999-02-18
- * Changed objno to unsigned long type to be consistent with
- * addr->offset and how it is being called.
- *-------------------------------------------------------------------------
- */
-herr_t
-H5F_addr_pack(H5F_t UNUSED *f, haddr_t *addr_p/*out*/,
- const unsigned long objno[2])
-{
- /* Use FUNC_ENTER_NOINIT here to avoid performance issues */
- FUNC_ENTER_NOINIT(H5F_addr_pack);
-
- assert(f);
- assert(objno);
- assert(addr_p);
-
- *addr_p = objno[0];
-#if H5_SIZEOF_LONG<H5_SIZEOF_UINT64_T
- *addr_p |= ((uint64_t)objno[1]) << (8*sizeof(long));
-#endif
-
- FUNC_LEAVE_NOAPI(SUCCEED);
-}
-
-
-/*-------------------------------------------------------------------------
* Function: H5F_sieve_overlap_clear
*
* Purpose: Checks for an address range's overlap with the sieve buffer