summaryrefslogtreecommitdiffstats
path: root/src/H5Ostab.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-09-24 16:30:22 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-09-24 16:30:22 (GMT)
commit0f7fcaad25171bd5d4eb8f822d88b5770d9b235d (patch)
tree0e187af66ca6ec2036d56a882133008f46d78fb2 /src/H5Ostab.c
parent8a4d8a5b0c7e473566ae9347ac228eaea0490875 (diff)
downloadhdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.zip
hdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.tar.gz
hdf5-0f7fcaad25171bd5d4eb8f822d88b5770d9b235d.tar.bz2
[svn-r111] Changed hdf5_file_t to H5F_t, split data struct ito two halves, fixed
problems when opening the same file more than once.
Diffstat (limited to 'src/H5Ostab.c')
-rw-r--r--src/H5Ostab.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/H5Ostab.c b/src/H5Ostab.c
index c4bb67c..cd8b708 100644
--- a/src/H5Ostab.c
+++ b/src/H5Ostab.c
@@ -23,15 +23,15 @@
#define PABLO_MASK H5O_stab_mask
/* PRIVATE PROTOTYPES */
-static void *H5O_stab_decode (hdf5_file_t *f, size_t raw_size, const uint8 *p);
-static herr_t H5O_stab_encode (hdf5_file_t *f, size_t size, uint8 *p,
+static void *H5O_stab_decode (H5F_t *f, size_t raw_size, const uint8 *p);
+static herr_t H5O_stab_encode (H5F_t *f, size_t size, uint8 *p,
const void *_mesg);
static void *H5O_stab_fast (const H5G_cache_t *cache, void *_mesg);
static hbool_t H5O_stab_cache (H5G_type_t *cache_type, H5G_cache_t *cache,
const void *_mesg);
static void *H5O_stab_copy (const void *_mesg, void *_dest);
-static size_t H5O_stab_size (hdf5_file_t *f, const void *_mesg);
-static herr_t H5O_stab_debug (hdf5_file_t *f, const void *_mesg,
+static size_t H5O_stab_size (H5F_t *f, const void *_mesg);
+static herr_t H5O_stab_debug (H5F_t *f, const void *_mesg,
FILE *stream, intn indent, intn fwidth);
/* This message derives from H5O */
@@ -73,7 +73,7 @@ static hbool_t interface_initialize_g = FALSE;
*-------------------------------------------------------------------------
*/
static void *
-H5O_stab_decode (hdf5_file_t *f, size_t raw_size, const uint8 *p)
+H5O_stab_decode (H5F_t *f, size_t raw_size, const uint8 *p)
{
H5O_stab_t *stab;
@@ -111,7 +111,7 @@ H5O_stab_decode (hdf5_file_t *f, size_t raw_size, const uint8 *p)
*-------------------------------------------------------------------------
*/
static herr_t
-H5O_stab_encode (hdf5_file_t *f, size_t raw_size, uint8 *p, const void *_mesg)
+H5O_stab_encode (H5F_t *f, size_t raw_size, uint8 *p, const void *_mesg)
{
const H5O_stab_t *stab = (const H5O_stab_t *)_mesg;
@@ -279,7 +279,7 @@ H5O_stab_copy (const void *_mesg, void *_dest)
*-------------------------------------------------------------------------
*/
static size_t
-H5O_stab_size (hdf5_file_t *f, const void *_mesg)
+H5O_stab_size (H5F_t *f, const void *_mesg)
{
FUNC_ENTER (H5O_stab_size, NULL, FAIL);
FUNC_LEAVE (2 * H5F_SIZEOF_OFFSET(f));
@@ -304,8 +304,8 @@ H5O_stab_size (hdf5_file_t *f, const void *_mesg)
*-------------------------------------------------------------------------
*/
static herr_t
-H5O_stab_debug (hdf5_file_t *f, const void *_mesg, FILE *stream,
- intn indent, intn fwidth)
+H5O_stab_debug (H5F_t *f, const void *_mesg, FILE *stream, intn indent,
+ intn fwidth)
{
const H5O_stab_t *stab = (const H5O_stab_t *)_mesg;