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.
11 lines
349 B
11 lines
349 B
define: DUK_USE_VALSTACK_UNSAFE
|
|
introduced: 1.2.0
|
|
default: false
|
|
tags:
|
|
- performance
|
|
- experimental
|
|
description: >
|
|
Don't check allocated value stack size in operations like value stack
|
|
pushes. Improves performance of API calls but causes unsafe memory
|
|
behavior (e.g. a segfault) when user code pushes beyond "checked" value
|
|
stack size.
|
|
|