[svn-r1155]

added a new member to the H5F_search_t struct to store the path name
we needed this to be able to tell if a file is already open since NT does not
use the inode.
This commit is contained in:
Patrick Lu 1999-03-22 12:48:18 -05:00
parent 13c9a30beb
commit 019daa1b2e

View File

@ -302,6 +302,7 @@ typedef struct H5F_access_t {
typedef struct H5F_search_t {
dev_t dev; /* Device number containing file */
ino_t ino; /* Unique file number on device */
char* path;
} H5F_search_t;
/* For determining what the last file operation was */