summaryrefslogtreecommitdiffstats
path: root/src/H5Fquery.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-08-22 18:28:20 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2019-08-22 18:28:20 (GMT)
commitc36d2eeae7eac6012b2061e308040ea260f4f392 (patch)
treef5c3bd33db25b2d5953eb9f5d64a8dcab8ae0ddb /src/H5Fquery.c
parent5d6f27b32be6919ab64046bd8ff27c69d84a2c17 (diff)
downloadhdf5-c36d2eeae7eac6012b2061e308040ea260f4f392.zip
hdf5-c36d2eeae7eac6012b2061e308040ea260f4f392.tar.gz
hdf5-c36d2eeae7eac6012b2061e308040ea260f4f392.tar.bz2
Switch shared file struct name from 'H5F_file_t' to 'H5F_shared_t', to match
naming convention for shared structs in rest of library data structures.
Diffstat (limited to 'src/H5Fquery.c')
-rw-r--r--src/H5Fquery.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/H5Fquery.c b/src/H5Fquery.c
index 5b5f748..c885561 100644
--- a/src/H5Fquery.c
+++ b/src/H5Fquery.c
@@ -79,13 +79,13 @@
*
* Purpose: Quick and dirty routine to retrieve the file's 'intent' flags
* (Mainly added to stop non-file routines from poking about in the
- * H5F_file_t data structure)
+ * H5F_shared_t data structure)
*
* Return: 'intent' on success/abort on failure (shouldn't fail)
*-------------------------------------------------------------------------
*/
unsigned
-H5F_shared_get_intent(const H5F_file_t *f_sh)
+H5F_shared_get_intent(const H5F_shared_t *f_sh)
{
/* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
FUNC_ENTER_NOAPI_NOINIT_NOERR
@@ -243,7 +243,7 @@ H5F_get_extpath(const H5F_t *f)
* Return: 'shared' on success/abort on failure (shouldn't fail)
*-------------------------------------------------------------------------
*/
-H5F_file_t *
+H5F_shared_t *
H5F_get_shared(const H5F_t *f)
{
/* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
@@ -858,7 +858,7 @@ H5F_store_msg_crt_idx(const H5F_t *f)
*-------------------------------------------------------------------------
*/
hbool_t
-H5F_shared_has_feature(const H5F_file_t *f_sh, unsigned feature)
+H5F_shared_has_feature(const H5F_shared_t *f_sh, unsigned feature)
{
/* Use FUNC_ENTER_NOAPI_NOINIT_NOERR here to avoid performance issues */
FUNC_ENTER_NOAPI_NOINIT_NOERR
@@ -955,7 +955,7 @@ done:
*-------------------------------------------------------------------------
*/
haddr_t
-H5F_shared_get_eoa(const H5F_file_t *f_sh, H5FD_mem_t type)
+H5F_shared_get_eoa(const H5F_shared_t *f_sh, H5FD_mem_t type)
{
haddr_t ret_value = HADDR_UNDEF; /* Return value */