diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-10-10 19:55:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-10-10 19:55:09 (GMT) |
commit | 46434499668593bb2421a58365700e53c128cb10 (patch) | |
tree | 4288cb29b1ab6b31aa2e0a9cf6c814d54373b044 /src/H5Fprivate.h | |
parent | 4f5328967e20f41f26b6f88901fdc79e80496ceb (diff) | |
download | hdf5-46434499668593bb2421a58365700e53c128cb10.zip hdf5-46434499668593bb2421a58365700e53c128cb10.tar.gz hdf5-46434499668593bb2421a58365700e53c128cb10.tar.bz2 |
[svn-r2656] Purpose:
Bug Fix
Description:
When parallel I/O is turned on, there were some macros used in the H5D
routines which poked around in the H5F_t structure. This breaks the
privacy of that structure and ties the H5D code too tightly to the H5F_t
struct.
Solution:
Added a small function to retrieve the the value (driver_id) needed from
the H5F_t function.
Platforms tested:
Eyeballed only, Albert needs this right away...
Diffstat (limited to 'src/H5Fprivate.h')
-rw-r--r-- | src/H5Fprivate.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index d643f9e..d007614 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -307,6 +307,7 @@ struct H5S_t; /* Private functions, not part of the publicly documented API */ __DLL__ herr_t H5F_init(void); __DLL__ uintn H5F_get_intent(H5F_t *f); +__DLL__ hid_t H5F_get_driver_id(H5F_t *f); /* Functions that operate on array storage */ __DLL__ herr_t H5F_arr_create(H5F_t *f, |