summaryrefslogtreecommitdiffstats
path: root/doc/CrtSlave.3
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2003-07-16 21:34:23 (GMT)
committerdkf <dkf@noemail.net>2003-07-16 21:34:23 (GMT)
commit2b504f651257e6d94659ea5aa4e143d2d127aa88 (patch)
treededf4db8228d031004a8e7e4cb7d38bf43fc1962 /doc/CrtSlave.3
parentd0bf6d8f12d1cf126a7997bf3f9fbac65b33c0c6 (diff)
downloadtcl-2b504f651257e6d94659ea5aa4e143d2d127aa88.zip
tcl-2b504f651257e6d94659ea5aa4e143d2d127aa88.tar.gz
tcl-2b504f651257e6d94659ea5aa4e143d2d127aa88.tar.bz2
Tcl_MakeSafe is a nasty function; document it as such. [Bug 655300]
FossilOrigin-Name: d9a41d63e99c126c00bf7a1b59466f44b69595ae
Diffstat (limited to 'doc/CrtSlave.3')
-rw-r--r--doc/CrtSlave.316
1 files changed, 11 insertions, 5 deletions
diff --git a/doc/CrtSlave.3 b/doc/CrtSlave.3
index 96765fd..f0945c6 100644
--- a/doc/CrtSlave.3
+++ b/doc/CrtSlave.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: CrtSlave.3,v 1.8 2002/08/05 03:24:39 dgp Exp $
+'\" RCS: @(#) $Id: CrtSlave.3,v 1.9 2003/07/16 21:34:25 dkf Exp $
'\"
.so man.macros
.TH Tcl_CreateSlave 3 7.6 Tcl "Tcl Library Procedures"
@@ -140,10 +140,16 @@ If the creation of the new slave interpreter failed, \fBNULL\fR is returned.
with the \fBTCL_SAFE_INTERPRETER\fR flag specified),
\fB0\fR otherwise.
.PP
-\fBTcl_MakeSafe\fR makes \fIinterp\fR ``safe'' by removing all
-non-core and core unsafe functionality. Note that if you call this after
-adding some extension to an interpreter, all traces of that extension will
-be removed from the interpreter.
+\fBTcl_MakeSafe\fR marks \fIinterp\fR as ``safe'', so that future
+calls to \fBTcl_IsSafe\fR will return 1. It also removes all known
+potentially-unsafe core functionality (both commands and variables)
+from \fIinterp\fR. However, it cannot know what parts of an extension
+or application are safe and does not make any attempt to remove those
+parts, so safety is not guaranteed after calling \fBTcl_MakeSafe\fR.
+For this reason, this function should not be called by new code and is
+likely to be deprecated or removed in a future version of Tcl. Safe
+interpreters can be obtained by using \fBTcl_CreateSlave\fR instead,
+which creates interpreters in a known-safe state.
.PP
\fBTcl_GetSlave\fR returns a pointer to a slave interpreter of
\fIinterp\fR. The slave interpreter is identified by \fIslaveName\fR.