Unix and Linux Discussions Tagged with limit |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
4 |
3,936 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
5,042 |
Web Development |
|
|
|
2 |
7,577 |
Red Hat |
|
|
|
1 |
8,911 |
Solaris |
|
|
|
3 |
14,811 |
Shell Programming and Scripting |
|
|
|
1 |
11,935 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
3,597 |
Shell Programming and Scripting |
|
|
|
4 |
22,867 |
AIX |
|
|
|
2 |
8,691 |
AIX |
|
|
|
21 |
21,711 |
Emergency UNIX and Linux Support |
|
|
|
1 |
4,805 |
Linux |
|
|
|
2 |
4,634 |
Solaris |
|
|
|
1 |
6,503 |
HP-UX |
|
|
|
2 |
7,755 |
Shell Programming and Scripting |
|
|
|
5 |
24,843 |
Linux |
|
|
|
9 |
7,173 |
Shell Programming and Scripting |
|
|
|
2 |
7,406 |
Ubuntu |
|
|
|
2 |
8,396 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,305 |
Red Hat |
|
|
|
2 |
14,593 |
AIX |
|
|
|
0 |
11,396 |
Programming |
|
|
|
2 |
4,099 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
20,575 |
Solaris |
|
|
|
9 |
5,384 |
Solaris |
|
|
|
6 |
53,148 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
30,661 |
UNIX for Dummies Questions & Answers |
|
|
|
7 |
51,371 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
9,517 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
6,607 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
5,419 |
IP Networking |
|
|
|
2 |
4,708 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
6,339 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,622 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
9,866 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
14,780 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,655 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
10,141 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
5,477 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,701 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
12,452 |
Programming |
Tcl_SetRecursionLimit(3) Tcl Library Procedures Tcl_SetRecursionLimit(3)
__________________________________________________________________________________________________________________________________________________
NAME
Tcl_SetRecursionLimit - set maximum allowable nesting depth in interpreter
SYNOPSIS
#include <tcl.h>
int
Tcl_SetRecursionLimit(interp, depth)
ARGUMENTS
Tcl_Interp *interp (in) Interpreter whose recursion limit is to be set. Must be greater than zero.
int depth (in) New limit for nested calls to Tcl_Eval for interp.
_________________________________________________________________
DESCRIPTION
At any given time Tcl enforces a limit on the number of recursive 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 argument specifies a new
limit for interp, and Tcl_SetRecursionLimit returns the old limit. To read out the old limit without modifying it, invoke Tcl_SetRecur-
sionLimit 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 a limit on the size of the C stack, you may get stack overflows before reaching the limit set by
Tcl_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, recursion
Tcl 7.0 Tcl_SetRecursionLimit(3)