summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-03-22 17:48:18 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-03-22 17:48:18 (GMT)
commit019daa1b2e1593bcc26613379d76ba92b2a62f80 (patch)
tree4d7022d91b7afee5281687fc54859eba9b198cc0 /src
parent13c9a30beb9e177acffbb5cc5c1601a7d8b6199b (diff)
downloadhdf5-019daa1b2e1593bcc26613379d76ba92b2a62f80.zip
hdf5-019daa1b2e1593bcc26613379d76ba92b2a62f80.tar.gz
hdf5-019daa1b2e1593bcc26613379d76ba92b2a62f80.tar.bz2
[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.
Diffstat (limited to 'src')
-rw-r--r--src/H5Fprivate.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h
index cd2b17c..92f5ead 100644
--- a/src/H5Fprivate.h
+++ b/src/H5Fprivate.h
@@ -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 */