Page 2 of 2
Re: recursion limit
Posted: Wed Jun 06, 2012 7:53 pm
by Joerg
GREAT! Thanks again!
Best regards
Jörg
Re: recursion limit
Posted: Sun Jan 27, 2019 2:35 am
by BillOne
Hi , I am having the exact same message when I open a stack and it does not stop, what should I do ? Here is the message : revStackNameIsIDEStack has reached the recursion limit of : 400000. Execution will be terminated to prevent hang
Re: recursion limit
Posted: Sun Jan 27, 2019 2:36 am
by BillOne
mwieder wrote: Wed Jun 06, 2012 5:50 pm
Would something like this do the trick?
Code: Select all
local sRecursionLoop --(sic)
on mouseUp
put 10000 into sRecursionLoop
doSimulation
end mouseUp
on doSimulation
subtract 1 from sRecursionLoop
if sRecursionLoop > 0
send "doSimulation" to me
else
answer "fertig"
end if
end doSimulation
Hi , I am having the exact same message when I open a stack and it does not stop, what should I do ? Here is the message : revStackNameIsIDEStack has reached the recursion limit of : 400000. Execution will be terminated to prevent hang
Re: recursion limit
Posted: Sun Jan 27, 2019 5:23 am
by BillOne
Klaus wrote: Wed Jun 06, 2012 4:05 pm
Hi Joerg,
"recursionlimit" is NOT the number of runs of a handler but the size in bytes of the calls!
You can SET this to a higher value and see if that helps.
Check the dictionary for more info.
Best
Klaus
Hi , I am having the exact same message when I open a stack and it does not stop, what should I do ? Here is the message : revStackNameIsIDEStack has reached the recursion limit of : 400000. Execution will be terminated to prevent hang