[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:
Bill Wendling 2003-02-06 17:20:29 -05:00
parent 4507d01c42
commit ad1bf227cd

View File

@ -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 */