summaryrefslogtreecommitdiffstats
path: root/generic/tclFileSystem.h
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-06-28 19:59:10 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-06-28 19:59:10 (GMT)
commit3ae62dec90a0df3f4ca0aa3b3cf9f86f022dcf4e (patch)
treec177b306cc7eabdede0019b7baa94421273e2a89 /generic/tclFileSystem.h
parent520694a58080e97c074cad03586259c67bcd2a25 (diff)
parentdca8e0445683dc4e2ffd2e04dff00dfc7fded3e0 (diff)
downloadtcl-3ae62dec90a0df3f4ca0aa3b3cf9f86f022dcf4e.zip
tcl-3ae62dec90a0df3f4ca0aa3b3cf9f86f022dcf4e.tar.gz
tcl-3ae62dec90a0df3f4ca0aa3b3cf9f86f022dcf4e.tar.bz2
merge trunk
bug fix: variable $key not found make it work on cygwin as well
Diffstat (limited to 'generic/tclFileSystem.h')
-rw-r--r--generic/tclFileSystem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclFileSystem.h b/generic/tclFileSystem.h
index 3dfc1de..828e81d 100644
--- a/generic/tclFileSystem.h
+++ b/generic/tclFileSystem.h
@@ -28,7 +28,6 @@ typedef struct FilesystemRecord {
ClientData clientData; /* Client specific data for the new filesystem
* (can be NULL) */
Tcl_Filesystem *fsPtr; /* Pointer to filesystem dispatch table. */
- int fileRefCount; /* How many Tcl_Obj's use this filesystem. */
struct FilesystemRecord *nextPtr;
/* The next filesystem registered to Tcl, or
* NULL if no more. */
@@ -52,6 +51,7 @@ typedef struct ThreadSpecificData {
Tcl_Obj *cwdPathPtr;
ClientData cwdClientData;
FilesystemRecord *filesystemList;
+ int claims;
} ThreadSpecificData;
/*