summaryrefslogtreecommitdiffstats
path: root/src/H5Fprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2002-03-27 20:25:03 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2002-03-27 20:25:03 (GMT)
commit7e9738f290af26d1bf4ab9db64544d9a89505f0a (patch)
treee5e0986486cbd1440a6acd3adf14cc533c70cfe0 /src/H5Fprivate.h
parent30aa868e1082ddd7cc59b4f0716434f4a02fcbdd (diff)
downloadhdf5-7e9738f290af26d1bf4ab9db64544d9a89505f0a.zip
hdf5-7e9738f290af26d1bf4ab9db64544d9a89505f0a.tar.gz
hdf5-7e9738f290af26d1bf4ab9db64544d9a89505f0a.tar.bz2
[svn-r5096] Purpose:
Bug Fix Description: The H5Gget_objinfo() function was not setting the 'fileno' field in the H5G_stat_t struct passed in. Solution: Added a "file serial number" to each file currently open in the library and put that in the 'fileno' field. If a file is opened twice (with H5Fopen) and the VFL driver detects that it is the same file (i.e. the two file structures have the same "shared file info" in the library's memory structures), they will have the same serial number. This serial number has two drawbacks: - If a VFL driver doesn't/can't detect that two calls to H5Fopen with the same file actually _are_ the same file, each will get a different serial number - If the same file is closed and re-opened, the serial number will be different. It is be possible to fix the second drawback for many VFL drivers, but it would be a lot of effort and probably isn't worth it until we've got a good reason to do it. Dunno if we'll ever be able to fix the first drawback... Platforms tested: FreeBSD 4.5 (sleipnir) VS: ----------------------------------------------------------------------
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r--src/H5Fprivate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index 2b43757..8a77e7a 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -331,6 +331,7 @@ struct H5S_t;
__DLL__ herr_t H5F_init(void);
__DLL__ unsigned H5F_get_intent(const H5F_t *f);
__DLL__ hid_t H5F_get_driver_id(const H5F_t *f);
+__DLL__ herr_t H5F_get_fileno(const H5F_t *f, unsigned long *filenum);
/* Functions that operate on array storage */
__DLL__ herr_t H5F_arr_create(H5F_t *f,