summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-02-09 21:51:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-02-09 21:51:06 (GMT)
commitf091546b6aea4eb5bad1ea7bcab1880b36e1034a (patch)
treea1def5177a101107ca9ddb9393db929acd7f2ddf /src
parent9daa1a55cdce6b06ffd7cbc262eb36704032db73 (diff)
downloadhdf5-f091546b6aea4eb5bad1ea7bcab1880b36e1034a.zip
hdf5-f091546b6aea4eb5bad1ea7bcab1880b36e1034a.tar.gz
hdf5-f091546b6aea4eb5bad1ea7bcab1880b36e1034a.tar.bz2
[svn-r18222] Description:
Change name of H5Oexists() routine to H5Oexists_by_name(), to match rest of H5O API routine naming scheme. Tested on: Mac OS X/32 10.6.2 (amazon) w/debug & production (too minor to require h5committest)
Diffstat (limited to 'src')
-rw-r--r--src/H5O.c8
-rw-r--r--src/H5Opublic.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/src/H5O.c b/src/H5O.c
index f83db67..d80fc8d 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -537,7 +537,7 @@ done:
/*-------------------------------------------------------------------------
- * Function: H5Oexists
+ * Function: H5Oexists_by_name
*
* Purpose: Determine if a linked-to object exists
*
@@ -550,12 +550,12 @@ done:
*-------------------------------------------------------------------------
*/
htri_t
-H5Oexists(hid_t loc_id, const char *name, hid_t lapl_id)
+H5Oexists_by_name(hid_t loc_id, const char *name, hid_t lapl_id)
{
H5G_loc_t loc; /* Location info */
hid_t ret_value = FAIL; /* Return value */
- FUNC_ENTER_API(H5Oexists, FAIL)
+ FUNC_ENTER_API(H5Oexists_by_name, FAIL)
H5TRACE3("t", "i*si", loc_id, name, lapl_id);
/* Check args */
@@ -575,7 +575,7 @@ H5Oexists(hid_t loc_id, const char *name, hid_t lapl_id)
done:
FUNC_LEAVE_API(ret_value)
-} /* end H5Oexists() */
+} /* end H5Oexists_by_name() */
/*-------------------------------------------------------------------------
diff --git a/src/H5Opublic.h b/src/H5Opublic.h
index ca11554..c5ae3c1 100644
--- a/src/H5Opublic.h
+++ b/src/H5Opublic.h
@@ -148,7 +148,7 @@ H5_DLL hid_t H5Oopen(hid_t loc_id, const char *name, hid_t lapl_id);
H5_DLL hid_t H5Oopen_by_addr(hid_t loc_id, haddr_t addr);
H5_DLL hid_t H5Oopen_by_idx(hid_t loc_id, const char *group_name,
H5_index_t idx_type, H5_iter_order_t order, hsize_t n, hid_t lapl_id);
-H5_DLL htri_t H5Oexists(hid_t loc_id, const char *name, hid_t lapl_id);
+H5_DLL htri_t H5Oexists_by_name(hid_t loc_id, const char *name, hid_t lapl_id);
H5_DLL herr_t H5Oget_info(hid_t loc_id, H5O_info_t *oinfo);
H5_DLL herr_t H5Oget_info_by_name(hid_t loc_id, const char *name, H5O_info_t *oinfo,
hid_t lapl_id);