mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
438 B
12 lines
438 B
define: DUK_USE_NATIVE_CALL_RECLIMIT
|
|
introduced: 1.3.0
|
|
default: 1000
|
|
tags:
|
|
- portability
|
|
- cstackdepth
|
|
description: >
|
|
Maximum duk_handle_call() / duk_handle_safe_call() C recursion limit.
|
|
Note that this does not limit bytecode executor internal call depth at
|
|
all (e.g. for Ecmascript-to-Ecmascript calls, thread yields/resumes, etc).
|
|
There is a separate callstack depth limit for threads which is independent
|
|
of this limit.
|
|
|