diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-30 12:18:23 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-30 12:18:23 (GMT) |
commit | ac672933cc2154f0e86feca424d5ef39137aed5b (patch) | |
tree | c916d7a0a00b1a6e0be8d0775f179e1fe33f7c87 /doc/interp.n | |
parent | 76db3e4e9d4a852f78aacdcab9d1185a2d01349f (diff) | |
download | tcl-ac672933cc2154f0e86feca424d5ef39137aed5b.zip tcl-ac672933cc2154f0e86feca424d5ef39137aed5b.tar.gz tcl-ac672933cc2154f0e86feca424d5ef39137aed5b.tar.bz2 |
Limits documentation and style improvements
Added C docs, cleaned up C code, added note on behaviour of limited master interps
Diffstat (limited to 'doc/interp.n')
-rw-r--r-- | doc/interp.n | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/interp.n b/doc/interp.n index f645f99..0f5aba4 100644 --- a/doc/interp.n +++ b/doc/interp.n @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: interp.n,v 1.12 2004/05/29 18:50:33 jenglish Exp $ +'\" RCS: @(#) $Id: interp.n,v 1.13 2004/05/30 12:18:25 dkf Exp $ '\" .so man.macros .TH interp n 7.6 Tcl "Tcl Built-In Commands" @@ -671,6 +671,15 @@ This option specifies the number of commands that the interpreter may execute before triggering the command limit. This option may be the empty string, which indicates that a command limit is not set for the interpreter. +.PP +Where an interpreter with a resource limit set on it creates a slave +interpreter, that slave interpreter will have resource limits imposed +on it that are at least as restrictive as the limits on the creating +master interpreter. If the master interpreter of the limited master +wishes to relax these conditions, it should hide the \fBinterp\fR +command in the child and then use aliases and the \fBinterp +invokehidden\fR subcommand to provide such access as it chooses to the +\fBinterp\fR command to the limited master as necessary. .VE 8.5 .SH CREDITS This mechanism is based on the Safe-Tcl prototype implemented |