mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-07 16:37:56 +08:00
[svn-r6381] Purpose:
Field Addition Description: Added a File ID field to the H5FD_t structure so that, way deep down in the H5FD_* functions, I'll know what ID the SAP wants for this particular file. This is #ifdef'd out so that if you don't have FPHDF5 enabled, then it won't be there... Platforms tested: Linux
This commit is contained in:
parent
4507d01c42
commit
ad1bf227cd
@ -167,6 +167,9 @@ typedef struct H5FD_free_t {
|
||||
*/
|
||||
struct H5FD_t {
|
||||
hid_t driver_id; /*driver ID for this file*/
|
||||
#ifdef H5_HAVE_FPHDF5
|
||||
unsigned fphdf5_id; /*ID used by the SAP */
|
||||
#endif /* H5_HAVE_FPHDF5 */
|
||||
const H5FD_class_t *cls; /*constant class info */
|
||||
unsigned long fileno[2]; /* File serial number */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user