summaryrefslogtreecommitdiffstats
path: root/doc/CrtSlave.3
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2003-07-16 21:31:49 (GMT)
committerdkf <dkf@noemail.net>2003-07-16 21:31:49 (GMT)
commitc07d3998a6a629b8dd941a99d1c8bf06cafa67ac (patch)
treeb41b85cc6cd99f25901e488acc49ad511fd27add /doc/CrtSlave.3
parent9a98ba7244d9dd30413b8da6fc40f89a51725006 (diff)
downloadtcl-c07d3998a6a629b8dd941a99d1c8bf06cafa67ac.zip
tcl-c07d3998a6a629b8dd941a99d1c8bf06cafa67ac.tar.gz
tcl-c07d3998a6a629b8dd941a99d1c8bf06cafa67ac.tar.bz2
Tcl_MakeSafe is a nasty function; document it as such. [Bug 655300]
FossilOrigin-Name: 8eed71b2c325d4ffcaa73c4d3ff9674bae07227d
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..9ad0f51 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.8.2.1 2003/07/16 21:31:52 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.