summaryrefslogtreecommitdiffstats
path: root/doc/CrtSlave.3
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2003-07-16 21:31:50 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2003-07-16 21:31:50 (GMT)
commita192f58aa339e34d092729d90602e2513f1634ac (patch)
treeb41b85cc6cd99f25901e488acc49ad511fd27add /doc/CrtSlave.3
parent8950d01535cc68e18a799015b5bd31af5c9562c3 (diff)
downloadtcl-a192f58aa339e34d092729d90602e2513f1634ac.zip
tcl-a192f58aa339e34d092729d90602e2513f1634ac.tar.gz
tcl-a192f58aa339e34d092729d90602e2513f1634ac.tar.bz2
Tcl_MakeSafe is a nasty function; document it as such. [Bug 655300]
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.