summaryrefslogtreecommitdiffstats
path: root/doc/FileSystem.3
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2005-03-30 13:25:54 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2005-03-30 13:25:54 (GMT)
commit33ae5ac77607ca3f3761de4133cbcce7bdc2b7af (patch)
tree3988a3e7f13f1ddc311f1540f8ce0de89e539eb8 /doc/FileSystem.3
parent2e4186a1263948ad9543116b4db53579a1c607c4 (diff)
downloadtcl-33ae5ac77607ca3f3761de4133cbcce7bdc2b7af.zip
tcl-33ae5ac77607ca3f3761de4133cbcce7bdc2b7af.tar.gz
tcl-33ae5ac77607ca3f3761de4133cbcce7bdc2b7af.tar.bz2
Added doc for missing argument. [Bug 1172401]
Diffstat (limited to 'doc/FileSystem.3')
-rw-r--r--doc/FileSystem.36
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/FileSystem.3 b/doc/FileSystem.3
index 1b98cb2..8456331 100644
--- a/doc/FileSystem.3
+++ b/doc/FileSystem.3
@@ -4,7 +4,7 @@
'\" See the file "license.terms" for information on usage and redistribution
'\" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
'\"
-'\" RCS: @(#) $Id: FileSystem.3,v 1.52 2005/02/05 09:15:41 davidw Exp $
+'\" RCS: @(#) $Id: FileSystem.3,v 1.53 2005/03/30 13:25:54 dkf Exp $
'\"
.so man.macros
.TH Filesystem 3 8.4 Tcl "Tcl Library Procedures"
@@ -209,6 +209,8 @@ Filled with the safe-init function for this code.
.AP ClientData *clientDataPtr out
Filled with the clientData value to pass to this code's unload
function when it is called.
+.AP Tcl_LoadHandle *handlePtr out
+Filled with an abstract token representing the loaded file.
.AP Tcl_FSUnloadFileProc **unloadProcPtr out
Filled with the function to use to unload this piece of code.
.AP utimbuf *tval in
@@ -1414,7 +1416,7 @@ message is left in the \fIinterp\fR's result. The function dynamically loads a
binary code file into memory. On a successful load, the \fIhandlePtr\fR
should be filled with a token for the dynamically loaded file, and the
\fIunloadProcPtr\fR should be filled in with the address of a procedure.
-The unload procedure will be called with the given Tcl_LoadHandle as its
+The unload procedure will be called with the given \fBTcl_LoadHandle\fR as its
only parameter when Tcl needs to unload the file. For example, for the
native filesystem, the \fBTcl_LoadHandle\fR returned is currently a token
which can be used in the private \fBTclpFindSymbol\fR to access functions