Tcl Library Procedures Tcl_SetRecursionLimit(3TCL)
_________________________________________________________________
NAME
Tcl_SetRecursionLimit - set maximum allowable nesting depth
in interpreterSYNOPSIS
#include
intTcl_SetRecursionLimit(interp, depth)
ARGUMENTSTcl_Interp *interp (in) Interpreter whose recursion
limit is to be set. Must be greater than zero. int depth (in) New limit for nested callsto Tcl_Eval for interp.
_________________________________________________________________
DESCRIPTION
At any given time Tcl enforces a limit on the number ofrecursive calls that may be active for Tcl_Eval and related
procedures such as Tcl_GlobalEval. Any call to Tcl_Eval
that exceeds this depth is aborted with an error. By default the recursion limit is 1000.Tcl_SetRecursionLimit may be used to change the maximum
allowable nesting depth for an interpreter. The depth argu-
ment specifies a new limit for interp, andTcl_SetRecursionLimit returns the old limit. To read out
the old limit without modifying it, invokeTcl_SetRecursionLimit with depth equal to 0.
The Tcl_SetRecursionLimit only sets the size of the Tcl call
stack: it cannot by itself prevent stack overflows on the C stack being used by the application. If your machine has alimit on the size of the C stack, you may get stack over-
flows before reaching the limit set byTcl_SetRecursionLimit. If this happens, see if there is a
mechanism in your system for increasing the maximum size of the C stack. KEYWORDS nesting depth, recursionATTRIBUTES
See attributes(5) for descriptions of the following attri-
butes: Tcl Last change: 7.0 1Tcl Library Procedures Tcl_SetRecursionLimit(3TCL)
_______________________________________
| ATTRIBUTE TYPE | ATTRIBUTE VALUE|
|____________________|__________________|_
| Availability | runtime/tcl-8 |
|____________________|__________________|_
| Interface Stability| Uncommitted ||____________________|_________________|
NOTES Source for Tcl is available on http://opensolaris.org. Tcl Last change: 7.0 2